-
Notifications
You must be signed in to change notification settings - Fork 14
/
mbed_app.json
44 lines (44 loc) · 2 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
{
"config": {
"iothub_client_trace": {
"help": "Enable IoT Hub Client tracing",
"value": false
}
},
"target_overrides": {
"*": {
"platform.stdio-convert-newlines": true,
"platform.stdio-baud-rate": 115200
},
"DISCO_L475VG_IOT01A": {
"target.components_add": ["wifi_ism43362"],
"target.network-default-interface-type": "WIFI",
"nsapi.default-wifi-security": "WPA_WPA2",
"nsapi.default-wifi-ssid": "\"SSID\"",
"nsapi.default-wifi-password": "\"PASSWORD\""
},
"EP_AGORA": {
"nsapi.default-cellular-apn" : "\"APN\"",
"nsapi.default-cellular-sim-pin" : null,
"nsapi.default-cellular-username" : null,
"nsapi.default-cellular-password" : null,
"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,
"lwip.use-mbed-trace" : true,
"lwip.debug-enabled" : false,
"target.features_remove": ["CRYPTOCELL310"],
"target.macros_remove": ["MBEDTLS_CONFIG_HW_SUPPORT"],
"target.macros_add": ["NRFX_RNG_ENABLED=1", "RNG_ENABLED=1", "NRF_QUEUE_ENABLED=1"]
}
}
}