-
Notifications
You must be signed in to change notification settings - Fork 6
/
mbed_app.json
45 lines (44 loc) · 1.34 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
{
"config": {
"google-cloud-project-id": {
"help": "Google cloud project id",
"value": "\"project-plane-...\""
},
"google-cloud-region": {
"help": "Google cloud region",
"value": "\"..REGION..\""
},
"google-cloud-registry": {
"help": "Google cloud registry",
"value": "\"..registry..\""
},
"google-cloud-device-id": {
"help": "Google cloud device id",
"value": "\"..device..\""
},
"google-cloud-mqtt-topic": {
"help": "Topic to subscribe & publish to",
"value": "\"mbed-os\""
}
},
"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": "\"SSIS\"",
"nsapi.default-wifi-password": "\"pwd\""
}
},
"macros": [
"IOTC_FS_MEMORY=1",
"IOTC_TLS_LIB_MBEDTLS=1",
"MBEDTLS_SHA1_C=1",
"MBEDTLS_SSL_MAX_CONTENT_LEN=4096",
"MBED_CONF_APP_MAIN_STACK_SIZE=4352"
]
}