-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathmbed_app.json
34 lines (34 loc) · 1.03 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
{
"macros": [
"MBED_CONF_APP_MAIN_STACK_SIZE=4096",
"MBEDTLS_USER_CONFIG_FILE=\"mbedtls_entropy_config.h\""
],
"config": {
"network-interface":{
"help": "options are ETHERNET, WIFI_ESP8266, WIFI_ODIN, WIFI_IDW01M1, WIFI_RTW, MESH_LOWPAN_ND, MESH_THREAD",
"value": "ETHERNET"
},
"esp8266-tx": {
"help": "Pin used as TX (connects to ESP8266 RX)",
"value": "PTD3"
},
"esp8266-rx": {
"help": "Pin used as RX (connects to ESP8266 TX)",
"value": "PTD2"
},
"esp8266-debug": {
"value": true
}
},
"target_overrides": {
"*": {
"platform.stdio-convert-newlines": true,
"nsapi.default-wifi-ssid": "\"WIFI_SSID\"",
"nsapi.default-wifi-password": "\"WIFI_PASSWORD\"",
"nsapi.default-wifi-security": "WPA2"
},
"UBLOX_EVK_ODIN_W2": {
"target.network-default-interface-type" : "ETHERNET"
}
}
}