ban STM32L485 "ghost" chips.

This commit is contained in:
Dario Nieuwenhuis 2022-06-27 02:07:11 +02:00
parent c27bc1f719
commit 5b8c040fe9

View File

@ -567,10 +567,16 @@ def parse_chips():
for f in sorted(glob('sources/cubedb/mcu/STM32*.xml')):
f = f.replace(os.path.sep, '/')
# Not supported
if 'STM32MP' in f:
continue
# Does not exist in ST website. No datasheet, no RM.
if 'STM32GBK' in f:
continue
if 'STM32L485' in f:
continue
print(f)