We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df00535 commit 359e7fdCopy full SHA for 359e7fd
CI/update/stm32variant.py
@@ -222,8 +222,12 @@ def parse_mcu_file():
222
ignored_stm32_list.append(mcu_family)
223
xml_mcu.unlink()
224
return False
225
-
226
mcu_refname = mcu_node.attributes["RefName"].value
+ # 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
231
core_node = mcu_node.getElementsByTagName("Core")
232
for f in core_node:
233
# Strip last non digit characters and extract the number
0 commit comments