-
Notifications
You must be signed in to change notification settings - Fork 17
/
mbed_app.json
59 lines (59 loc) · 2.29 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
{
"requires": ["bare-metal", "mbedtls", "mcuboot", "flashiap-block-device", "spif-driver", "qspif", "mbed-trace", "sd"],
"config": {
"serial-bootloader-enable": {
"help": "Build bootloader with serial update support",
"value": 0
}
},
"target_overrides": {
"*": {
"platform.stdio-baud-rate": 115200,
"target.restrict_size": "0x20000",
"target.c_lib": "small",
"mcuboot.log-level": "MCUBOOT_LOG_LEVEL_DEBUG",
"mbed-trace.enable": true,
"mbed-trace.max-level": "TRACE_LEVEL_DEBUG",
"mbed-trace.fea-ipv6": false
},
"NRF52840_DK": {
"target.features_remove": ["CRYPTOCELL310"],
"target.macros_remove": ["MBEDTLS_CONFIG_HW_SUPPORT"],
"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": {
"target.features_remove": ["CRYPTOCELL310"],
"target.macros_remove": ["MBEDTLS_CONFIG_HW_SUPPORT"],
"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": {
"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": 1,
"qspif.QSPI_MIN_PROG_SIZE": 1
},
"K64F": {
"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": 512
}
}
}