Fix mbed-cli issue #468. Add LPCTargetCode.lpc_patch to POST_BINARY_WHITELIST.

pull/4134/head
Willie Walker 2017-03-30 15:22:57 -04:00 committed by Anna Bridge
parent 23499843b1
commit a1391f563d
3 changed files with 5 additions and 2 deletions

View File

@ -20,7 +20,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"
]) ])

View File

@ -61,6 +61,7 @@ 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"
]) ])
class GNUARMEclipse(Exporter): class GNUARMEclipse(Exporter):

View File

@ -37,7 +37,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"
]) ])
def generate(self): def generate(self):