Skip to content

Commit 8e02855

Browse files
netzimmetheotherjimmy
authored andcommitted
LPC4088: add LPC4088Code.binary_hook to the white list of the embitz, gnuarmeclipse and makefile exporter.
1 parent 6aca976 commit 8e02855

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)