Skip to content

Commit a1391f5

Browse files
wdwalkeradbridge
authored andcommitted
Fix mbed-cli issue #468. Add LPCTargetCode.lpc_patch to POST_BINARY_WHITELIST.
1 parent 2349984 commit a1391f5

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

tools/export/embitz/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020

2121

2222
POST_BINARY_WHITELIST = set([
23-
"TEENSY3_1Code.binary_hook"
23+
"TEENSY3_1Code.binary_hook",
24+
"LPCTargetCode.lpc_patch"
2425
])
2526

2627

tools/export/gnuarmeclipse/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ def id(self):
6161
POST_BINARY_WHITELIST = set([
6262
"TEENSY3_1Code.binary_hook",
6363
"MCU_NRF51Code.binary_hook",
64+
"LPCTargetCode.lpc_patch"
6465
])
6566

6667
class GNUARMEclipse(Exporter):

tools/export/makefile/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ class Makefile(Exporter):
3737

3838
POST_BINARY_WHITELIST = set([
3939
"MCU_NRF51Code.binary_hook",
40-
"TEENSY3_1Code.binary_hook"
40+
"TEENSY3_1Code.binary_hook",
41+
"LPCTargetCode.lpc_patch"
4142
])
4243

4344
def generate(self):

0 commit comments

Comments
 (0)