-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmbed_app.json
42 lines (42 loc) · 1.24 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
{
"requires": [
"bare-metal",
"events",
"blockdevice",
"filesystem",
"littlefs",
"fat_chan",
"sd"
],
"macros": [
"MBED_BLINKY_EXAMPLE=1",
"MBED_FILESYSTEM_EXAMPLE=0"
],
"target_overrides": {
"*": {
"target.c_lib": "small",
"target.printf_lib": "minimal-printf",
"platform.minimal-printf-enable-floating-point": false,
"platform.stdio-baud-rate" : 115200
},
"AIRIO_BASE": {
"target.components_add" : ["SD"],
"sd.SPI_MOSI" : "P0_21",
"sd.SPI_MISO" : "P0_22",
"sd.SPI_CLK" : "P1_15",
"sd.SPI_CS" : "P0_17"
},
"LPC11U68": {
"target.components_add" : ["SD"],
"sd.SPI_MOSI" : "D11",
"sd.SPI_MISO" : "D12",
"sd.SPI_CLK" : "D13",
"sd.SPI_CS" : "D10"
}
},
"config": {
"main-stack-size": {
"value": 2048
}
}
}