Skip to content

Commit 359e7fd

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 359e7fd

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,8 +222,12 @@ def parse_mcu_file():
222222
ignored_stm32_list.append(mcu_family)
223223
xml_mcu.unlink()
224224
return False
225-
226225
mcu_refname = mcu_node.attributes["RefName"].value
226+
# Skip STM32H5E/F series
227+
if mcu_refname.startswith("STM32H5E") or mcu_refname.startswith("STM32H5F"):
228+
print(f"Warning: {mcu_refname} series is not supported yet. Skipping.")
229+
xml_mcu.unlink()
230+
return False
227231
core_node = mcu_node.getElementsByTagName("Core")
228232
for f in core_node:
229233
# Strip last non digit characters and extract the number

0 commit comments

Comments
 (0)