We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b6faea commit b2733e9Copy full SHA for b2733e9
workspace_tools/targets.py
@@ -303,6 +303,16 @@ def __init__(self):
303
304
self.supported_toolchains = ["ARM", "uARM", "GCC_ARM"]
305
306
+class nRF51822(Target):
307
+ def __init__(self):
308
+ Target.__init__(self)
309
+
310
+ self.core = "Cortex-M0"
311
312
+ self.extra_labels = ["NORDIC"]
313
314
+ self.supported_toolchains = ["ARM"]
315
316
# Get a single instance for each target
317
TARGETS = [
318
LPC2368(),
@@ -322,7 +332,8 @@ def __init__(self):
322
332
LPC1114(),
323
333
LPC11C24(),
324
334
LPC11U35_401(),
325
- LPC4088_EA()
335
+ LPC4088_EA(),
336
+ nRF51822()
326
337
]
327
338
328
339
# Map each target name to its unique instance
0 commit comments