-
Notifications
You must be signed in to change notification settings - Fork 7
/
mbed_app.json
60 lines (60 loc) · 2.17 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
56
57
58
59
60
{
"config": {
"demo-button": {
"macro_name": "DEMO_BUTTON",
"required": true
},
"demo-button-active-low": {
"help": "true if the button state is low when pressed, high when released",
"macro_name": "DEMO_BUTTON_ACTIVE_LOW",
"required": false
}
},
"target_overrides": {
"*": {
"mcuboot.bootloader-build": 0,
"target.c_lib": "small",
"mcuboot.log-level": "MCUBOOT_LOG_LEVEL_DEBUG",
"mbed-trace.enable": true
},
"NRF52840_DK": {
"demo-button": "BUTTON1",
"demo-button-active-low": true,
"target.mbed_app_start": "0x21000",
"target.mbed_app_size": "0xBE000",
"mcuboot.primary-slot-address": "0x20000",
"mcuboot.slot-size": "0xC0000",
"mcuboot.scratch-address": "0xE0000",
"mcuboot.scratch-size": "0x20000",
"mcuboot.max-img-sectors": "0x180",
"mcuboot.read-granularity": 4,
"qspif.QSPI_MIN_PROG_SIZE": 4
},
"EP_AGORA": {
"demo-button": "BUTTON1",
"demo-button-active-low": true,
"target.mbed_app_start": "0x21000",
"target.mbed_app_size": "0xBE000",
"mcuboot.primary-slot-address": "0x20000",
"mcuboot.slot-size": "0xC0000",
"mcuboot.scratch-address": "0xE0000",
"mcuboot.scratch-size": "0x20000",
"mcuboot.max-img-sectors": "0x180",
"mcuboot.read-granularity": 4,
"qspif.QSPI_MIN_PROG_SIZE": 4
},
"DISCO_L475VG_IOT01A": {
"demo-button": "USER_BUTTON",
"demo-button-active-low": true,
"target.mbed_app_start": "0x8021000",
"target.mbed_app_size": "0xBE000",
"mcuboot.primary-slot-address": "0x8020000",
"mcuboot.slot-size": "0xC0000",
"mcuboot.scratch-address": "0x80E0000",
"mcuboot.scratch-size": "0x20000",
"mcuboot.max-img-sectors": "0x180",
"mcuboot.read-granularity": 4,
"qspif.QSPI_MIN_PROG_SIZE": 4
}
}
}