This repository has been archived by the owner on Aug 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmbed_app.json
55 lines (55 loc) · 2.05 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
55
{
"macros": [
"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"
},
"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.device_has_remove": ["EMAC"],
"target.mbed_app_start" : "0x08010400",
"update-client.bootloader-details" : "0x08007300",
"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"
}
}
}