-
Notifications
You must be signed in to change notification settings - Fork 44
/
mbed_app.json
49 lines (49 loc) · 1.72 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
{
"config": {
"sock-type": "TCP",
"echo-server-hostname": {
"help": "Echo server host name.",
"value": "\"echo.mbedcloudtesting.com\""
},
"echo-server-port": {
"help": "Echo server port number.",
"value": 7
},
"trace-level": {
"help": "Options are TRACE_LEVEL_ERROR,TRACE_LEVEL_WARN,TRACE_LEVEL_INFO,TRACE_LEVEL_DEBUG",
"macro_name": "MBED_TRACE_MAX_LEVEL",
"value": "TRACE_LEVEL_INFO"
}
},
"target_overrides": {
"*": {
"target.network-default-interface-type": "CELLULAR",
"mbed-trace.enable": false,
"lwip.ipv4-enabled": true,
"ppp.ipv4-enabled": true,
"lwip.ipv6-enabled": true,
"ppp.ipv6-enabled": true,
"lwip.ethernet-enabled": false,
"lwip.ppp-enabled": true,
"lwip.tcp-enabled": true,
"platform.stdio-convert-newlines": true,
"platform.stdio-baud-rate": 9600,
"platform.default-serial-baud-rate": 9600,
"platform.stdio-buffered-serial": true,
"cellular.debug-at": false,
"cellular.use-apn-lookup": true,
"nsapi.default-cellular-sim-pin": null,
"nsapi.default-cellular-plmn": null,
"nsapi.default-cellular-apn": null,
"nsapi.default-cellular-username": null,
"nsapi.default-cellular-password": null
},
"DISCO_L496AG": {
"target.macros_add": [
"CELLULAR_DEVICE=STModCellular"
],
"target.components_add": ["STMOD_CELLULAR"],
"stmod_cellular.provide-default": "true"
}
}
}