Skip to content

Commit

Permalink
Merge pull request #4289 from netzimme/master
Browse files Browse the repository at this point in the history
LPC4088: add "LPC4088Code.binary_hook" to the white list of the embit…
  • Loading branch information
theotherjimmy committed May 10, 2017
2 parents d04d588 + 8e02855 commit 59e32b2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion tools/export/embitz/__init__.py
Expand Up @@ -21,7 +21,8 @@

POST_BINARY_WHITELIST = set([
"TEENSY3_1Code.binary_hook",
"LPCTargetCode.lpc_patch"
"LPCTargetCode.lpc_patch",
"LPC4088Code.binary_hook"
])


Expand Down
3 changes: 2 additions & 1 deletion tools/export/gnuarmeclipse/__init__.py
Expand Up @@ -61,7 +61,8 @@ def id(self):
POST_BINARY_WHITELIST = set([
"TEENSY3_1Code.binary_hook",
"MCU_NRF51Code.binary_hook",
"LPCTargetCode.lpc_patch"
"LPCTargetCode.lpc_patch",
"LPC4088Code.binary_hook"
])

class GNUARMEclipse(Exporter):
Expand Down
3 changes: 2 additions & 1 deletion tools/export/makefile/__init__.py
Expand Up @@ -38,7 +38,8 @@ class Makefile(Exporter):
POST_BINARY_WHITELIST = set([
"MCU_NRF51Code.binary_hook",
"TEENSY3_1Code.binary_hook",
"LPCTargetCode.lpc_patch"
"LPCTargetCode.lpc_patch",
"LPC4088Code.binary_hook"
])

def generate(self):
Expand Down

0 comments on commit 59e32b2

Please sign in to comment.