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 9fe2d23 commit 87a4ff0Copy full SHA for 87a4ff0
builder/main.py
@@ -134,13 +134,19 @@
134
else:
135
encrypt_message = "Encrypting $TARGET with default key"
136
137
+ # Choose the correct board name for teensy_secure
138
+ if board_config.id == "teensymm":
139
+ board_name = "TEENSY_MICROMOD"
140
+ else:
141
+ board_name = board_config.id.upper()
142
+
143
env.Append(
144
BUILDERS=dict(
145
HexToEhex=Builder(
146
action=env.VerboseAction(" ".join([
147
"$TEENSYSECURE",
148
"encrypthex",
- board_config.id.upper(),
149
+ board_name,
150
"$SOURCES",
151
custom_secure_key
152
]), encrypt_message),
0 commit comments