diff options
author | Corentin LABBE <clabbe@baylibre.com> | 2018-02-15 10:33:47 +0100 |
---|---|---|
committer | Corentin LABBE <clabbe@baylibre.com> | 2018-02-16 13:25:19 +0100 |
commit | dcf0ea63a6646fb32462d5a36f5cce7110bb3ef0 (patch) | |
tree | b7d3beccf59c85e68606afc928e8fd89f5c26192 | |
parent | db90b25feb7926a5406203bbf26b130a9f0f55a0 (diff) |
README: Fix vendor/product ID format
The format for vendor/product ID need to be prefixed by 0x.
-rw-r--r-- | README.md | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -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 ``` |