diff --git a/embassy-stm32/gen.py b/embassy-stm32/gen.py index 845b297c..7c82cd9a 100644 --- a/embassy-stm32/gen.py +++ b/embassy-stm32/gen.py @@ -15,7 +15,7 @@ os.chdir(dname) # ======= load chips chips = {} for f in sorted(glob('stm32-data/data/chips/*.yaml')): - if 'STM32F4' not in f and 'STM32L4' not in f and 'STM32H7' not in f: + if 'STM32F4' not in f and 'STM32L4' not in f and 'STM32H7' not in f and 'STM32L0' not in f: continue with open(f, 'r') as f: chip = yaml.load(f, Loader=yaml.CSafeLoader)