We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ebb30b commit 1a555c9Copy full SHA for 1a555c9
CI/utils/stm32wrapper.py
@@ -131,9 +131,9 @@ def printCMSISStartup(log):
131
# File name
132
fn = os.path.basename(fp)
133
valueline = re.split("_|\\.", fn)
134
- upper = (
135
- valueline[1].upper().replace("X", "x").replace("MP15xx", "MP1xx")
136
- )
+ if "stm32mp15" in valueline[1] and not valueline[1].endswith("xx"):
+ valueline[1] += "xx"
+ upper = valueline[1].upper().replace("X", "x")
137
out_file.write(
138
""" #elif defined({})
139
#define CMSIS_STARTUP_FILE \"{}\"
0 commit comments