We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df00535 commit a62c50bCopy full SHA for a62c50b
CI/update/stm32variant.py
@@ -222,7 +222,11 @@ def parse_mcu_file():
222
ignored_stm32_list.append(mcu_family)
223
xml_mcu.unlink()
224
return False
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
230
mcu_refname = mcu_node.attributes["RefName"].value
231
core_node = mcu_node.getElementsByTagName("Core")
232
for f in core_node:
0 commit comments