Added XADOW_M0 and ARCH_BLE targets

pull/335/head
Bogdan Marinescu 2014-05-28 15:03:07 +01:00
parent f6c6ec76c2
commit 97199bb372
1 changed files with 10 additions and 1 deletions

View File

@ -631,6 +631,13 @@ class DISCO_F303VC(Target):
self.supported_toolchains = ["GCC_ARM"]
class XADOW_M0(LPC11U35_501):
def __init__(self):
LPC11U35_501.__init__(self)
class ARCH_BLE(NRF51822):
def __init__(self):
NRF51822.__init__(self)
# Get a single instance for each target
TARGETS = [
@ -668,7 +675,9 @@ TARGETS = [
DISCO_F051R8(),
DISCO_F100RB(),
DISCO_F303VC(),
DISCO_F407VG()
DISCO_F407VG(),
XADOW_M0(),
ARCH_BLE()
]
# Map each target name to its unique instance