aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/extras
diff options
context:
space:
mode:
authorMatt Baker <baker.matt.j@gmail.com>2022-09-21 21:45:51 -0700
committerKevinOConnor <kevin@koconnor.net>2022-12-02 11:31:42 -0500
commitc5d56f4438de4fd9b9a06948415eb5c8f3ecdbd7 (patch)
tree68a733022592bf8e671b27172b1d04f7740ea2bd /klippy/extras
parent9ab367d8136d059c14f0cc5e9ab0a198d744d5b4 (diff)
downloadkutter-c5d56f4438de4fd9b9a06948415eb5c8f3ecdbd7.tar.gz
kutter-c5d56f4438de4fd9b9a06948415eb5c8f3ecdbd7.tar.xz
kutter-c5d56f4438de4fd9b9a06948415eb5c8f3ecdbd7.zip
stm32g4: implement build,usb,can,i2c,spi,serial,adc.
Signed-off-by: Matt Baker <baker.matt.j@gmail.com>
Diffstat (limited to 'klippy/extras')
-rw-r--r--klippy/extras/temperature_mcu.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/klippy/extras/temperature_mcu.py b/klippy/extras/temperature_mcu.py
index f35e9728..d1be3e04 100644
--- a/klippy/extras/temperature_mcu.py
+++ b/klippy/extras/temperature_mcu.py
@@ -72,6 +72,7 @@ class PrinterTemperatureMCU:
('stm32f070', self.config_stm32f070),
('stm32f072', self.config_stm32f0x2),
('stm32g0', self.config_stm32g0),
+ ('stm32g4', self.config_stm32g0),
('stm32l4', self.config_stm32g0),
('stm32h7', self.config_stm32h7),
('', self.config_unknown)]