Merge pull request #4289 from netzimme/master

LPC4088: add "LPC4088Code.binary_hook" to the white list of the embit…
pull/4308/head
Jimmy Brisson 2017-05-10 15:56:24 -05:00 committed by GitHub
commit 59e32b2fc6
3 changed files with 6 additions and 3 deletions

View File

@ -21,7 +21,8 @@ from tools.export.exporters import Exporter, filter_supported
POST_BINARY_WHITELIST = set([ POST_BINARY_WHITELIST = set([
"TEENSY3_1Code.binary_hook", "TEENSY3_1Code.binary_hook",
"LPCTargetCode.lpc_patch" "LPCTargetCode.lpc_patch",
"LPC4088Code.binary_hook"
]) ])

View File

@ -61,7 +61,8 @@ u = UID()
POST_BINARY_WHITELIST = set([ POST_BINARY_WHITELIST = set([
"TEENSY3_1Code.binary_hook", "TEENSY3_1Code.binary_hook",
"MCU_NRF51Code.binary_hook", "MCU_NRF51Code.binary_hook",
"LPCTargetCode.lpc_patch" "LPCTargetCode.lpc_patch",
"LPC4088Code.binary_hook"
]) ])
class GNUARMEclipse(Exporter): class GNUARMEclipse(Exporter):

View File

@ -38,7 +38,8 @@ class Makefile(Exporter):
POST_BINARY_WHITELIST = set([ POST_BINARY_WHITELIST = set([
"MCU_NRF51Code.binary_hook", "MCU_NRF51Code.binary_hook",
"TEENSY3_1Code.binary_hook", "TEENSY3_1Code.binary_hook",
"LPCTargetCode.lpc_patch" "LPCTargetCode.lpc_patch",
"LPC4088Code.binary_hook"
]) ])
def generate(self): def generate(self):