diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2017-01-02 12:22:43 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2017-01-02 12:22:43 -0500 |
commit | 91056809dd785dcf692226106b7e54402530b0e4 (patch) | |
tree | eade9c21f28f0bf2d5470325fcefcc7439c05451 /klippy/mcu.py | |
parent | f75430e95f557e4e77db1d9131417fa82e694aa6 (diff) | |
download | kutter-91056809dd785dcf692226106b7e54402530b0e4.tar.gz kutter-91056809dd785dcf692226106b7e54402530b0e4.tar.xz kutter-91056809dd785dcf692226106b7e54402530b0e4.zip |
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>
Diffstat (limited to 'klippy/mcu.py')
-rw-r--r-- | klippy/mcu.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/mcu.py b/klippy/mcu.py index 6fc2db0d..33a70076 100644 --- a/klippy/mcu.py +++ b/klippy/mcu.py @@ -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 |