LPC4088: add LPC4088Code.binary_hook to the white list of the embitz, gnuarmeclipse and makefile exporter.

pull/4356/head
Daniel Zimmermann 2017-05-09 01:04:45 +02:00 committed by adbridge
parent ada0d21401
commit 5dc7fc9cb8
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([
"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([
"TEENSY3_1Code.binary_hook",
"MCU_NRF51Code.binary_hook",
"LPCTargetCode.lpc_patch"
"LPCTargetCode.lpc_patch",
"LPC4088Code.binary_hook"
])
class GNUARMEclipse(Exporter):

View File

@ -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):