Skip to content

Commit a62c50b

Browse files
committed
chore(stm32variant): skip STM32H5E/F
Required some core update. Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
1 parent df00535 commit a62c50b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

CI/update/stm32variant.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,11 @@ def parse_mcu_file():
222222
ignored_stm32_list.append(mcu_family)
223223
xml_mcu.unlink()
224224
return False
225-
225+
# Skip STM32H5E/F series
226+
if mcu_family.startswith("STM32H5E") or mcu_family.startswith("STM32H5F"):
227+
print(f"Warning: {mcu_family} series is not supported yet. Skipping.")
228+
xml_mcu.unlink()
229+
return False
226230
mcu_refname = mcu_node.attributes["RefName"].value
227231
core_node = mcu_node.getElementsByTagName("Core")
228232
for f in core_node:

0 commit comments

Comments
 (0)