forked from PelionIoT/mbed-cloud-client-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmbed_app.json
More file actions
62 lines (62 loc) · 2.43 KB
/
mbed_app.json
File metadata and controls
62 lines (62 loc) · 2.43 KB
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
55
56
57
58
59
60
61
62
{
"macros": [
"MBEDTLS_USER_CONFIG_FILE=\"mbedTLSConfig_mbedOS.h\"",
"PAL_USER_DEFINED_CONFIGURATION=\"sotp_fs_config_MbedOS.h\"",
"ARM_UC_USE_PAL_BLOCKDEVICE=1",
"MBED_CLOUD_CLIENT_UPDATE_STORAGE=ARM_UCP_FLASHIAP_BLOCKDEVICE"
],
"target_overrides": {
"*": {
"platform.stdio-baud-rate": 115200,
"platform.stdio-convert-newlines": true,
"mbed-client.event-loop-size": 1024,
"mbed-trace.enable": null,
"storage-selector.filesystem" : "FAT",
"storage-selector.mount-point": "\"sd\"",
"storage-selector.storage" : "SD_CARD",
"update-client.storage-address" : "(1024*1024*64)",
"update-client.storage-size" : "(1024*1024*2)",
"update-client.storage-locations": "1",
"nanostack-hal.event_loop_thread_stack_size": 8192
},
"K64F": {
"target.mbed_app_start" : "0x0000a400",
"update-client.bootloader-details" : "0x00007188",
"update-client.application-details": "(40*1024)"
},
"NUCLEO_F429ZI": {
"target.mbed_app_start" : "0x08010400",
"update-client.bootloader-details" : "0x080078CC",
"update-client.application-details": "(0x08000000+64*1024)"
},
"UBLOX_EVK_ODIN_W2": {
"target.network-default-interface-type": "ETHERNET",
"target.mbed_app_start" : "0x08010400",
"update-client.bootloader-details" : "0x08007300",
"update-client.application-details": "(0x08000000+64*1024)"
},
"NUCLEO_F411RE": {
"target.mbed_app_start" : "0x08010400",
"update-client.bootloader-details" : "(0x08000000+30*1024)",
"update-client.application-details": "(0x08000000+64*1024)"
}
},
"config": {
"network-interface": {
"help": "Options are ETHERNET, WIFI_ESP8266, WIFI_ODIN",
"value": "ETHERNET"
},
"developer-mode": {
"help": "Enable Developer mode to skip Factory enrollment",
"value": 1
},
"button-pinname": {
"help": "PinName for button.",
"value": "BUTTON1"
},
"led-pinname": {
"help": "PinName for led, which is attached to led blink resource.",
"value": "LED_RED"
}
}
}