forked from ARMmbed/mbed-os-example-client
-
Notifications
You must be signed in to change notification settings - Fork 1
/
mbed_app.json
61 lines (61 loc) · 1.92 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
56
57
58
59
60
61
{
"config": {
"network-interface":{
"help": "Options are ETHERNET, WIFI_IDW0XX1, WIFI_ESP8266, WIFI_ISM43362, WIFI_ODIN, WIFI_WIZFI310, MESH_LOWPAN_ND, MESH_THREAD, CELLULAR_ONBOARD",
"value": "ETHERNET"
},
"mesh_radio_type": {
"help": "options are ATMEL, MCR20, SPIRIT1, EFR32",
"value": "ATMEL"
},
"wifi-ssid": {
"help": "WiFi SSID",
"value": "\"SSID\""
},
"wifi-password": {
"help": "WiFi Password",
"value": "\"Password\""
},
"wifi-tx": {
"help": "TX pin for serial connection to external device",
"value": "D1"
},
"wifi-rx": {
"help": "RX pin for serial connection to external device",
"value": "D0"
}
},
"macros": ["MBEDTLS_USER_CONFIG_FILE=\"mbedtls_mbed_client_config.h\""],
"target_overrides": {
"*": {
"target.features_add": ["NANOSTACK", "COMMON_PAL"],
"nanostack.configuration": "lowpan_router",
"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
},
"DISCO_F413ZH": {
"network-interface": "WIFI_ISM43362"
},
"DISCO_L475VG_IOT01A": {
"network-interface": "WIFI_ISM43362"
},
"NUCLEO_F401RE": {
"wifi-tx": "PA_11",
"wifi-rx": "PA_12"
},
"NUCLEO_F411RE": {
"wifi-tx": "PA_11",
"wifi-rx": "PA_12"
},
"UBLOX_EVK_ODIN_W2": {
"target.network-default-interface-type": "ETHERNET"
},
"UBLOX_C030_U201": {
"lwip.ppp-enabled": true,
"ppp-cell-iface.apn-lookup": true
}
}
}