aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2024-10-27 15:07:07 -0400
committerKevin O'Connor <kevin@koconnor.net>2024-11-14 11:17:52 -0500
commit58541a799ea9dd4141595febd50ebfc0177f629b (patch)
treea8864b40612cd101bf0c0c22b5af073257ec45ba
parent848124ac4df9a0ad80290bfd6410d276c62cf31c (diff)
downloadkutter-58541a799ea9dd4141595febd50ebfc0177f629b.tar.gz
kutter-58541a799ea9dd4141595febd50ebfc0177f629b.tar.xz
kutter-58541a799ea9dd4141595febd50ebfc0177f629b.zip
temperature_mcu: Add support for rp2350 MCUs
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
-rw-r--r--klippy/extras/temperature_mcu.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/extras/temperature_mcu.py b/klippy/extras/temperature_mcu.py
index be2cd145..6f3386a4 100644
--- a/klippy/extras/temperature_mcu.py
+++ b/klippy/extras/temperature_mcu.py
@@ -66,7 +66,7 @@ class PrinterTemperatureMCU:
self.mcu_type = mcu.get_constants().get("MCU", "")
# Run MCU specific configuration
cfg_funcs = [
- ('rp2040', self.config_rp2040),
+ ('rp2', self.config_rp2040),
('sam3', self.config_sam3), ('sam4', self.config_sam4),
('same70', self.config_same70), ('samd21', self.config_samd21),
('samd51', self.config_samd51), ('same5', self.config_samd51),