diff options
author | Tomasz Kramkowski <tomasz@kramkow.ski> | 2025-08-15 21:13:44 +0100 |
---|---|---|
committer | Tomasz Kramkowski <tomasz@kramkow.ski> | 2025-08-15 21:46:37 +0100 |
commit | ae9102482560b557628c83a247ab35063ade0bf7 (patch) | |
tree | 2f08afac5a943aac31186e2c5c0c7d60e6d8837a /klippy/mcu.py | |
parent | 121edea90cde8295f720ed9d2f2fccca61f66bb4 (diff) | |
download | kutter-ae9102482560b557628c83a247ab35063ade0bf7.tar.gz kutter-ae9102482560b557628c83a247ab35063ade0bf7.tar.xz kutter-ae9102482560b557628c83a247ab35063ade0bf7.zip |
Rename everything significant to Kutter except for docs
Diffstat (limited to 'klippy/mcu.py')
-rw-r--r-- | klippy/mcu.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/klippy/mcu.py b/klippy/mcu.py index 279c3f1d..a4506938 100644 --- a/klippy/mcu.py +++ b/klippy/mcu.py @@ -1,4 +1,4 @@ -# Interface to Klipper micro-controller code +# Interface to the Kutter MCU # # Copyright (C) 2016-2025 Kevin O'Connor <kevin@koconnor.net> # @@ -732,7 +732,7 @@ class MCU: self._serialport = config.get("serial") if not ( self._serialport.startswith("/dev/rpmsg_") - or self._serialport.startswith("/tmp/klipper_host_") + or self._serialport.startswith("/tmp/kutter_host_") ): self._baud = config.getint("baud", 250000, minval=2400) # Restarts |