diff options
author | Matt Baker <baker.matt.j@gmail.com> | 2021-04-22 13:44:39 -0700 |
---|---|---|
committer | KevinOConnor <kevin@koconnor.net> | 2022-09-15 11:51:26 -0400 |
commit | d9c917b95099617b32dfaca4ae90c9e2dd641fff (patch) | |
tree | a6a7adb3fec7d84a5fa0bbb75432a229b1ee7699 /klippy/extras/temperature_mcu.py | |
parent | 57b0eb5d43e4324c2c52282925ddc63fc36df783 (diff) | |
download | kutter-d9c917b95099617b32dfaca4ae90c9e2dd641fff.tar.gz kutter-d9c917b95099617b32dfaca4ae90c9e2dd641fff.tar.xz kutter-d9c917b95099617b32dfaca4ae90c9e2dd641fff.zip |
stm32l4: add stm32l412 support with adc,i2c,spi,usb
Signed-off-by: Matt Baker <baker.matt.j@gmail.com>
Diffstat (limited to 'klippy/extras/temperature_mcu.py')
-rw-r--r-- | klippy/extras/temperature_mcu.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/klippy/extras/temperature_mcu.py b/klippy/extras/temperature_mcu.py index e82761b5..bf57bd19 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), + ('stm32l4', self.config_stm32g0), ('stm32h7', self.config_stm32h7), ('', self.config_unknown)] for name, func in cfg_funcs: |