Skip to content

Commit 59e32b2

Browse files
Merge pull request #4289 from netzimme/master
LPC4088: add "LPC4088Code.binary_hook" to the white list of the embit…
2 parents d04d588 + 8e02855 commit 59e32b2

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

tools/export/embitz/__init__.py

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

2222
POST_BINARY_WHITELIST = set([
2323
"TEENSY3_1Code.binary_hook",
24-
"LPCTargetCode.lpc_patch"
24+
"LPCTargetCode.lpc_patch",
25+
"LPC4088Code.binary_hook"
2526
])
2627

2728

tools/export/gnuarmeclipse/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@ def id(self):
6161
POST_BINARY_WHITELIST = set([
6262
"TEENSY3_1Code.binary_hook",
6363
"MCU_NRF51Code.binary_hook",
64-
"LPCTargetCode.lpc_patch"
64+
"LPCTargetCode.lpc_patch",
65+
"LPC4088Code.binary_hook"
6566
])
6667

6768
class GNUARMEclipse(Exporter):

tools/export/makefile/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ class Makefile(Exporter):
3838
POST_BINARY_WHITELIST = set([
3939
"MCU_NRF51Code.binary_hook",
4040
"TEENSY3_1Code.binary_hook",
41-
"LPCTargetCode.lpc_patch"
41+
"LPCTargetCode.lpc_patch",
42+
"LPC4088Code.binary_hook"
4243
])
4344

4445
def generate(self):

0 commit comments

Comments
 (0)