Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chibios_hwdef.py: correct extraction of intdefines from hwdef files
many of our hwdef files contain lines which look like this: define STM32_PWM_USE_ADVANCED TRUE The current regex does not allow for numbers in those define, so the regex ends up matching "STM" as a name.... the "intdefines" hash which is populated from these is only used internally to chibios_hwdey.py for logic purposes, not directly in hwdef output purposes, and none of the strings which it looks at contain numbers at the moment, so this is a non-functional change.
- Loading branch information