Merge pull request #373 from xiongyihui/master

bug fix for XADOW_M0 and ARCH_BLE
pull/367/head^2
Bogdan Marinescu 2014-06-25 08:46:34 +01:00
commit e2e0999886
1 changed files with 8 additions and 0 deletions

View File

@ -656,10 +656,18 @@ class XADOW_M0(LPC11U35_501):
def __init__(self):
LPC11U35_501.__init__(self)
self.extra_labels.append('LPC11U35_501')
self.macros = ['TARGET_LPC11U35_501']
class ARCH_BLE(NRF51822):
def __init__(self):
NRF51822.__init__(self)
self.extra_labels.append('NRF51822')
self.macros = ['TARGET_NRF51822']
class ARCH_PRO(Target):
def __init__(self):
Target.__init__(self)