-
Notifications
You must be signed in to change notification settings - Fork 21
/
mbed_app.json
50 lines (50 loc) · 2.04 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
{
"config": {
"aws-endpoint": {
"help": "Endpoint URL",
"value": "\"… .iot. … .amazonaws.com\""
},
"aws-mqtt-topic": {
"help": "Topic to subscribe & publish to",
"value": "\"sdkTest/sub\""
},
"aws-client-identifier": {
"help": "Unique identifier for the thing",
"value": "\"...\""
}
},
"target_overrides": {
"*": {
"mbed-trace.enable": true,
"mbed-trace.max-level": "TRACE_LEVEL_INFO",
"platform.error-filename-capture-enabled": true,
"platform.stdio-convert-newlines": true,
"platform.stdio-baud-rate": 115200,
"aws-client.shadow": false,
"aws-client.aws-sdk-trace": false
},
"DISCO_L475VG_IOT01A": {
"target.network-default-interface-type": "WIFI",
"nsapi.default-wifi-security": "WPA_WPA2",
"nsapi.default-wifi-ssid": "\"SSID\"",
"nsapi.default-wifi-password": "\"PASSWORD\""
},
"EP_AGORA": {
"platform.stdio-buffered-serial" : true,
"platform.stdio-flush-at-exit" : true,
"drivers.uart-serial-rxbuf-size" : 1024,
"drivers.uart-serial-txbuf-size" : 1024,
"lwip.ipv4-enabled" : true,
"lwip.ipv6-enabled" : true,
"lwip.ppp-enabled" : true,
"lwip.tcp-enabled" : true,
"lwip.ethernet-enabled" : false,
"lwip.mem-size" : 22000,
"lwip.tcpip-thread-stacksize" : 2000,
"nsapi.dns-response-wait-time" : 30000,
"nsapi.default-cellular-apn" : "\"phone\"",
"lwip.use-mbed-trace" : true,
"lwip.debug-enabled" : false
}
}
}