-
Notifications
You must be signed in to change notification settings - Fork 1
/
mbed_app.json
54 lines (54 loc) · 1.62 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": {
"wifi-shield": {
"help": "Options are internal, WIFI_IDW0XX1",
"value": "internal"
},
"wifi-spi_miso": {
"help": "SPI-MISO connection to external device",
"value": "PC_11"
},
"wifi-spi_mosi": {
"help": "SPI-MOSI connection to external device",
"value": "PC_12"
},
"wifi-spi_sclk": {
"help": "SPI-CLOCK connection to external device",
"value": "PC_10"
},
"wifi-spi_nss": {
"help": "SPI chip select of external device",
"value": "PE_0"
},
"wifi-reset": {
"help": "WIFI module reset pin",
"value": "PE_8"
},
"wifi-dataready": {
"help": "WIFI module data ready pin",
"value": "PE_1"
},
"wifi-wakeup": {
"help": "WIFI module wakeup pin",
"value": "PB_12"
}
},
"macros": ["MBEDTLS_USER_CONFIG_FILE=\"mbedtls-config-changes.h\""],
"target_overrides": {
"*": {
"platform.callback-nontrivial": true,
"platform.stdio-convert-newlines": true,
"target.features_add" : ["EXPERIMENTAL_API", "PSA"],
"target.extra_labels_add": ["MBED_PSA_SRV"]
},
"DISCO_L475VG_IOT1A": {
"wifi-spi_miso": "PC_11",
"wifi-spi_mosi": "PC_12",
"wifi-spi_sclk": "PC_10",
"wifi-spi_nss": "PE_0",
"wifi-reset": "PE_8",
"wifi-dataready": "PE_1",
"wifi-wakeup": "PB_12"
}
}
}