mirror of
https://github.com/andreili/klipper.git
synced 2025-08-24 03:44:06 +02:00
mcu: Change the default baud rate to 250000
Update the default baud rate in mcu.py to 250000 (as that is the default in all other places). Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
parent
f75430e95f
commit
91056809dd
@ -312,7 +312,7 @@ class MCU:
|
||||
self._printer = printer
|
||||
self._config = config
|
||||
# Serial port
|
||||
baud = config.getint('baud', 115200)
|
||||
baud = config.getint('baud', 250000)
|
||||
serialport = config.get('serial', '/dev/ttyS0')
|
||||
self.serial = serialhdl.SerialReader(printer.reactor, serialport, baud)
|
||||
self.is_shutdown = False
|
||||
|
Loading…
x
Reference in New Issue
Block a user