-
Notifications
You must be signed in to change notification settings - Fork 12
/
mbed_app.json
30 lines (30 loc) · 1.29 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
{
"macros": [
"MBED_CONF_TLS_SOCKET_DEBUG_LEVEL=1",
"MBEDTLS_USER_CONFIG_FILE=\"mbedtls_azure_config.h\""
],
"target_overrides": {
"*": {
"platform.stdio-baud-rate" : 115200,
"platform.stdio-convert-newlines" : true,
"mbed-trace.enable" : null,
"nsapi.default-wifi-security" : "WPA_WPA2",
"nsapi.default-wifi-ssid" : "\"SSID\"",
"nsapi.default-wifi-password" : "\"Password\""
},
"RZ_A1H": {
"target.macros_add" : ["MBEDTLS_TEST_NULL_ENTROPY", "MBEDTLS_NO_DEFAULT_ENTROPY_SOURCES"],
"target.network-default-interface-type" : "ETHERNET"
},
"DISCO_L475VG_IOT01A": {
"target.components_add" : ["WIFI_ISM43362"],
"target.network-default-interface-type" : "WIFI",
"ism43362.read-thread-stack-size" : 2048
},
"DISCO_F413ZH": {
"target.components_add" : ["WIFI_ISM43362"],
"target.network-default-interface-type" : "WIFI",
"ism43362.read-thread-stack-size" : 2048
}
}
}