From a447451969d5499582be56a8f659963134ecf101 Mon Sep 17 00:00:00 2001 From: Dario Nieuwenhuis Date: Sun, 28 Nov 2021 23:34:12 +0100 Subject: [PATCH] Ban STM32GBK1CB. It's a ghost stm32g4 chip that completely breaks the naming convention and is apparently full-unobtainium (doesn't exist on mouser, digikey, etc.) --- stm32data/__main__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/stm32data/__main__.py b/stm32data/__main__.py index 872798a..e63198d 100755 --- a/stm32data/__main__.py +++ b/stm32data/__main__.py @@ -445,6 +445,8 @@ def parse_chips(): for f in sorted(glob('sources/cubedb/mcu/STM32*.xml')): if 'STM32MP' in f: continue + if 'STM32GBK' in f: + continue print(f)