mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #4289 from netzimme/master
LPC4088: add "LPC4088Code.binary_hook" to the white list of the embit…pull/4308/head
commit
59e32b2fc6
|
@ -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"
|
||||
])
|
||||
|
||||
|
||||
|
|
|
@ -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):
|
||||
|
|
|
@ -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):
|
||||
|
|
Loading…
Reference in New Issue