summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorCorentin LABBE <clabbe@baylibre.com>2018-02-15 10:33:47 +0100
committerCorentin LABBE <clabbe@baylibre.com>2018-02-16 13:25:19 +0100
commitdcf0ea63a6646fb32462d5a36f5cce7110bb3ef0 (patch)
treeb7d3beccf59c85e68606afc928e8fd89f5c26192 /README.md
parentdb90b25feb7926a5406203bbf26b130a9f0f55a0 (diff)
README: Fix vendor/product ID format
The format for vendor/product ID need to be prefixed by 0x.
Diffstat (limited to 'README.md')
-rw-r--r--README.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/README.md b/README.md
index a3c297c..d72b6c0 100644
--- a/README.md
+++ b/README.md
@@ -90,8 +90,8 @@ So you have now:
beagleboneblack-01:
type: beaglebone-black
uart:
- idvendor: "0403"
- idproduct: 6001
+ idvendor: 0x0403
+ idproduct: 0x6001
serial: AK04TU1X
```
@@ -108,8 +108,8 @@ So you have now:
beagleboneblack-01:
type: beaglebone-black
uart:
- idvendor: "0403"
- idproduct: 6001
+ idvendor: 0x0403
+ idproduct: 0x6001
devpath: "1.5"
```
@@ -137,8 +137,8 @@ beagleboneblack, with FTDI (serial 1234567), connected to port 5 of an ACME
power_off_command: /usr/local/bin/acme-cli -s 192.168.66.2 power_off 5
power_on_command: /usr/local/bin/acme-cli -s 192.168.66.2 power_on 5
uart:
- idvendor: "0403"
- idproduct: 6001
+ idvendor: 0x0403
+ idproduct: 0x6001
serial: 1234567
```