forked from ARMmbed/mbed-os-example-bootloader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmbed_app.json
More file actions
42 lines (42 loc) · 1.25 KB
/
Copy pathmbed_app.json
File metadata and controls
42 lines (42 loc) · 1.25 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
{
"config": {
"update_file": {
"help": "Path to the application update binary on the SD card",
"value": "\"mbed-os-example-blinky_application.bin\""
},
"sd_card_mosi": {
"help": "MCU pin connected to the SD card's SPI MOSI pin",
"value": "D11"
},
"sd_card_miso": {
"help": "MCU pin connected to the SD card's SPI MISO pin",
"value": "D12"
},
"sd_card_sck": {
"help": "MCU pin connected to the SD card's SPI SCK pin",
"value": "D13"
},
"sd_card_cs": {
"help": "MCU pin connected to the SD card's SPI CS pin",
"value": "D10"
}
},
"target_overrides": {
"K64F": {
"target.restrict_size": "0x40000",
"sd_card_mosi": "PTE3",
"sd_card_miso": "PTE1",
"sd_card_sck": "PTE2",
"sd_card_cs": "PTE4"
},
"NUCLEO_F429ZI": {
"target.components_add": ["SD"],
"target.restrict_size": "0x40000"
},
"UBLOX_EVK_ODIN_W2": {
"target.components_add": ["SD"],
"target.restrict_size": "0x40000",
"sd_card_cs": "D9"
}
}
}