forked from mbed-ce/mbed-ce-hello-world
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmbed_app.json
52 lines (49 loc) · 1.69 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
{
"requires": [
"bare-metal",
"rtos-api"
],
"artifact_name": "firmware",
"target_overrides": {
"BLUEPILL": {
"platform.stdio-baud-rate" : 115200,
"platform.stdio-convert-newlines" : true,
"platform.stdio-buffered-serial" : true,
"platform.stdio-flush-at-exit" : true,
"target.stdio_uart_tx": "PA_9",
"target.stdio_uart_rx": "PA_10",
"target.default_lib": "std"
},
"NUCLEO_F103RB": {
"platform.stdio-baud-rate": 115200,
"platform.stdio-convert-newlines" : true,
"platform.stdio-buffered-serial" : true,
"platform.stdio-flush-at-exit" : true,
"target.default_lib": "std"
},
"NUCLEO_G0B1RE": {
"platform.stdio-baud-rate": 115200,
"platform.stdio-convert-newlines" : true,
"platform.stdio-buffered-serial" : true,
"platform.stdio-flush-at-exit" : true,
"target.default_lib": "std"
},
"NUCLEO_F401RE": {
"platform.stdio-baud-rate": 115200,
"platform.stdio-convert-newlines" : true,
"platform.stdio-buffered-serial" : true,
"platform.stdio-flush-at-exit" : true,
"target.default_lib": "std"
},
"NUCLEO_F446RE": {
"platform.stdio-baud-rate": 115200
},
"NUCLEO_H723ZG": {
"platform.stdio-baud-rate": 115200
},
"NUCLEO_F446ZE": {
"platform.stdio-baud-rate": 115200,
"target.device_has_remove": ["USBDEVICE"]
}
}
}