diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2018-06-01 17:18:12 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2018-06-01 17:22:03 -0400 |
commit | 2c4ca8888784dc9af1d917df33193b6c35196761 (patch) | |
tree | 336ab3351f59ec6ded4a484da1bc5ed3187bd7dc /config/example-multi-mcu.cfg | |
parent | 404cd376b5d15f91b94a79f6515ebfaa53462b1f (diff) | |
download | kutter-2c4ca8888784dc9af1d917df33193b6c35196761.tar.gz kutter-2c4ca8888784dc9af1d917df33193b6c35196761.tar.xz kutter-2c4ca8888784dc9af1d917df33193b6c35196761.zip |
docs: Update documentation to note use of /dev/serial/by-path/
When using multiple micro-controllers it may be necessary to use an id
from /dev/serial/by-path/ instead of /dev/serial/by-id/. Also,
emphasize that in config/example-multi-mcu.cfg.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'config/example-multi-mcu.cfg')
-rw-r--r-- | config/example-multi-mcu.cfg | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config/example-multi-mcu.cfg b/config/example-multi-mcu.cfg index 144651c3..e2f2a0b3 100644 --- a/config/example-multi-mcu.cfg +++ b/config/example-multi-mcu.cfg @@ -9,17 +9,17 @@ # micro-controllers on the printer. Typically, both the X and Y axes # are connected to the main micro-controller. [mcu] -serial: /dev/ttyACM0 +serial: /dev/serial/by-path/platform-3f980000.usb-usb-0:1.2:1.0-port0 pin_map: arduino # The "zboard" micro-controller will be used to control the Z axis. [mcu zboard] -serial: /dev/ttyACM1 +serial: /dev/serial/by-path/platform-3f980000.usb-usb-0:1.3:1.0-port0 pin_map: arduino # The "auxboard" micro-controller will be used to control the heaters. [mcu auxboard] -serial: /dev/ttyACM2 +serial: /dev/serial/by-path/platform-3f980000.usb-usb-0:1.4:1.0-port0 pin_map: arduino [stepper_x] |