-
Notifications
You must be signed in to change notification settings - Fork 0
/
mbed_app.json
53 lines (53 loc) · 1.59 KB
/
mbed_app.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"config": {
"radio-type":{
"help": "options are ATMEL, MCR20, NCS36510, KW24D",
"value": "KW24D"
},
"mesh-type":{
"help": "options are MESH_LOWPAN, MESH_THREAD",
"value": "MESH_THREAD"
},
"enable-led-control-example": true,
"LED": "NC",
"BUTTON": "NC"
},
"target_overrides": {
"*": {
"target.features_add": ["NANOSTACK", "COMMON_PAL"],
"nanostack.configuration": "thread_router",
"mbed-trace.enable": false,
"mbed-mesh-api.heap-size": 30000,
"mbed-mesh-api.thread-device-type": "MESH_DEVICE_TYPE_THREAD_ROUTER",
"mbed-mesh-api.thread-config-panid": "0x0777",
"mbed-mesh-api.thread-master-key": "{0x77, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88, 0x99, 0xaa, 0xbb, 0xcc, 0xdd, 0xee, 0xff}",
"mbed-mesh-api.thread-config-channel": 22,
"platform.stdio-convert-newlines": true,
"platform.stdio-baud-rate": 115200
},
"K64F": {
"LED": "LED_RED",
"BUTTON": "SW2"
},
"K66F": {
"LED": "LED_RED",
"BUTTON": "SW2"
},
"NUCLEO_F401RE": {
"LED": "NC",
"BUTTON": "USER_BUTTON"
},
"NUCLEO_F411RE": {
"LED": "NC",
"BUTTON": "USER_BUTTON"
},
"NCS36510": {
"LED": "LED1",
"BUTTON": "SW2"
},
"KW24D": {
"LED": "LED1",
"BUTTON": "SW1"
}
}
}