-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmbed_app.json
98 lines (98 loc) · 3.3 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"macros": [
"MBEDTLS_SHA1_C=1"
],
"config": {
"main-stack-size": {
"value": 4096
},
"led-pin": {
"help": "LED pin.",
"required": true
},
"led-on": {
"help": "Digital pin state when LED is turned on.",
"required": true
},
"led-off": {
"help": "Digital pin state when LED is turned off.",
"required": true
},
"user-button": {
"help": "Push Button to send a packet.",
"required": true
}
},
"target_overrides": {
"*": {
"target.network-default-interface-type": "ETHERNET",
"mbed-trace.enable": null,
"platform.stdio-baud-rate": 115200,
"platform.stdio-convert-newlines": false
},
"K64F": {
"led-pin": "LED3",
"led-on": 0,
"led-off": 1,
"user-button": "BUTTON1"
},
"DISCO_L475VG_IOT01A": {
"led-pin": "LED1",
"led-on": 0,
"led-off": 1,
"user-button": "USER_BUTTON",
"target.network-default-interface-type" : "WIFI",
"nsapi.default-wifi-security": "WPA_WPA2",
"nsapi.default-wifi-ssid": "\"SSID\"",
"nsapi.default-wifi-password": "\"PASSWORD\""
},
"RZ_A1H": {
"led-pin": "LED3",
"led-on": 1,
"led-off": 0,
"user-button": "BUTTON1",
"target.macros_add": ["MBEDTLS_TEST_NULL_ENTROPY", "MBEDTLS_NO_DEFAULT_ENTROPY_SOURCES"]
},
"WIO_3G": {
"led-pin": "D20",
"led-on": 1,
"led-off": 0,
"user-button": "D19",
"target.network-default-interface-type": "CELLULAR",
"target.device_has_remove": ["SERIAL_FC"],
"mbed-trace.enable": false,
"lwip.ipv4-enabled": true,
"lwip.ethernet-enabled": false,
"lwip.ppp-enabled": true,
"lwip.tcp-enabled": true,
"platform.default-serial-baud-rate": 115200,
"platform.stdio-buffered-serial": true,
"cellular.debug-at": false,
"nsapi.default-cellular-plmn": 0,
"nsapi.default-cellular-sim-pin": 0,
"nsapi.default-cellular-apn": "\"APN\"",
"nsapi.default-cellular-username": "\"USERNAME\"",
"nsapi.default-cellular-password": "\"PASSWORD\""
},
"WIO_BG96": {
"led-pin": "D20",
"led-on": 1,
"led-off": 0,
"user-button": "D19",
"target.network-default-interface-type": "CELLULAR",
"mbed-trace.enable": false,
"lwip.ipv4-enabled": true,
"lwip.ethernet-enabled": false,
"lwip.ppp-enabled": true,
"lwip.tcp-enabled": true,
"platform.default-serial-baud-rate": 115200,
"platform.stdio-buffered-serial": true,
"cellular.debug-at": false,
"nsapi.default-cellular-plmn": 0,
"nsapi.default-cellular-sim-pin": 0,
"nsapi.default-cellular-apn": "\"APN\"",
"nsapi.default-cellular-username": "\"USERNAME\"",
"nsapi.default-cellular-password": "\"PASSWORD\""
}
}
}