forked from coisme/Mbed-to-IBM-Watson-IoT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mbed_app.json
54 lines (54 loc) · 2.38 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
{
"macros": [
"MBED_CONF_APP_MAIN_STACK_SIZE=4096",
"MBED_TRACE_MAX_LEVEL=TRACE_LEVEL_INFO",
"MBEDTLS_SHA1_C=1"
],
"target_overrides": {
"*": {
"target.features_add" : ["NANOSTACK"],
"mbed-trace.enable" : 0,
"platform.stdio-baud-rate" : 115200,
"mbed-trace.enable" : 0,
"platform.stdio-baud-rate" : 115200,
"platform.stdio-convert-newlines" : true,
"platform.default-serial-baud-rate" : 115200,
"platform.stdio-buffered-serial" : true,
"nsapi.default-wifi-security" : "WPA_WPA2",
"nsapi.default-wifi-ssid" : "\"SSID\"",
"nsapi.default-wifi-password" : "\"PASSWORD\"",
"nsapi.default-cellular-plmn" : 0,
"nsapi.default-cellular-apn" : "\"soracom.io\"",
"nsapi.default-cellular-username" : "\"sora\"",
"nsapi.default-cellular-password" : "\"sora\"",
"mbed-mqtt.max-packet-size" : "1024"
},
"WIO_3G": {
"target.device_has_remove" : ["SERIAL_FC"],
"target.features_add" : ["LWIP"],
"lwip.ipv4-enabled" : true,
"lwip.ethernet-enabled" : false,
"lwip.ppp-enabled" : true,
"lwip.tcp-enabled" : true,
"cellular.use-apn-lookup" : false,
"cellular.debug-at" : false
},
"WIO_BG96": {
"target.features_add" : ["LWIP"],
"lwip.ipv4-enabled" : true,
"lwip.ethernet-enabled" : false,
"lwip.ppp-enabled" : true,
"lwip.tcp-enabled" : true,
"cellular.use-apn-lookup" : false,
"cellular.debug-at" : false,
"nsapi.default-cellular-plmn" : "\"44052\""
},
"RZ_A1H": {
"target.macros_add": ["MBEDTLS_TEST_NULL_ENTROPY", "MBEDTLS_NO_DEFAULT_ENTROPY_SOURCES"]
},
"GR_LYCHEE": {
"target.components_add" : ["WIFI_ESP32"],
"target.network-default-interface-type" : "WIFI"
}
}
}