-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmbed_app.json
54 lines (54 loc) · 1.57 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
{
"config": {
"network-interface":{
"help": "options are ETHERNET, ETHERNET_W5500, ETHERNET_W7500x, WIFI_ESP8266, WIFI_ODIN, MESH_LOWPAN_ND, MESH_THREAD",
"value": "ETHERNET_W5500"
},
"Wiznet-mosi": {
"macro_name": "W5500_SPI_MOSI",
"value": "PB_15"
},
"Wiznet-miso": {
"macro_name": "W5500_SPI_MISO",
"value": "PB_14"
},
"Wiznet-clk": {
"macro_name": "W5500_SPI_SCLK",
"value": "PB_13"
},
"Wiznet-cs": {
"macro_name": "W5500_SPI_CS",
"value": "PB_12"
},
"Wiznet-rst": {
"macro_name": "W5500_SPI_RST",
"value": "PB_9"
}
},
"target_overrides": {
"*": {
"target.printf_lib": "std",
"mbed-http.http-buffer-size" : 1024,
"platform.stdio-baud-rate": 115200,
"platform.stdio-convert-newlines": true,
"platform.all-stats-enabled": true,
"mbed-trace.enable": 0,
"lwip.socket-max": 8,
"lwip.tcp-socket-max": 8
},
"NUCLEO_F411RE": {
"target.clock_source": "USE_PLL_HSI",
"target.stdio_uart_tx": "PA_9",
"target.stdio_uart_rx": "PA_10"
},
"BLACKPILL_F411CE": {
},
"BLUEPILL_F103RB": {
"target.default_lib": "small"
},
"DEVEBOX_F407VG": {
"mbed-trace.enable": "1",
"stm32-emac.eth-phy-address" : 1
}
}
}