From b5373a1a648e9d99e54423c0db35720f72bf14eb Mon Sep 17 00:00:00 2001 From: Ulf Lilleengen Date: Wed, 19 May 2021 10:43:04 +0200 Subject: [PATCH] Allow generating pac for STM32L0 --- embassy-stm32/gen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)