ban STM32L485 "ghost" chips.
This commit is contained in:
parent
c27bc1f719
commit
5b8c040fe9
@ -567,10 +567,16 @@ def parse_chips():
|
|||||||
|
|
||||||
for f in sorted(glob('sources/cubedb/mcu/STM32*.xml')):
|
for f in sorted(glob('sources/cubedb/mcu/STM32*.xml')):
|
||||||
f = f.replace(os.path.sep, '/')
|
f = f.replace(os.path.sep, '/')
|
||||||
|
|
||||||
|
# Not supported
|
||||||
if 'STM32MP' in f:
|
if 'STM32MP' in f:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
|
# Does not exist in ST website. No datasheet, no RM.
|
||||||
if 'STM32GBK' in f:
|
if 'STM32GBK' in f:
|
||||||
continue
|
continue
|
||||||
|
if 'STM32L485' in f:
|
||||||
|
continue
|
||||||
|
|
||||||
print(f)
|
print(f)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user