-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmbed_app.json
55 lines (55 loc) · 1.55 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
54
55
{
"config": {
"network-interface":{
"help": "options are ETHERNET, ETHERNET_W5500, WIFI_ESP8266, WIFI_ODIN, MESH_LOWPAN_ND, MESH_THREAD",
"value": "ETHERNET_W5500"
},
"mesh_radio_type": {
"help": "options are ATMEL, MCR20, SPIRIT1, EFR32",
"value": "ATMEL"
},
"esp8266-tx": {
"help": "Pin used as TX (connects to ESP8266 RX)",
"value": "D1"
},
"esp8266-rx": {
"help": "Pin used as RX (connects to ESP8266 TX)",
"value": "D0"
},
"esp8266-debug": {
"value": true
},
"wifi-ssid": {
"value": "\"SSID\""
},
"wifi-password": {
"value": "\"Password\""
}
},
"target_overrides": {
"*": {
"target.features_add": ["NANOSTACK", "LOWPAN_ROUTER", "COMMON_PAL"],
"platform.stdio-baud-rate": 115200,
"platform.stdio-convert-newlines": true,
"mbed-mesh-api.6lowpan-nd-channel-page": 0,
"mbed-mesh-api.6lowpan-nd-channel": 12,
"mbed-trace.enable": 0
},
"HEXIWEAR": {
"esp8266-tx": "PTD3",
"esp8266-rx": "PTD2"
},
"NUCLEO_F401RE": {
"esp8266-tx": "D8",
"esp8266-rx": "D2"
},
"NUCLEO_F411RE": {
"esp8266-tx": "D8",
"esp8266-rx": "D2"
},
"NUCLEO_F103RB": {
"esp8266-tx": "D8",
"esp8266-rx": "D2"
}
}
}