Initial setup for TheKsystem.
Dependencies: mbed-http HTS221
Diff: mbed_app.json
- Revision:
- 22:1b8c2a81c85d
- Parent:
- 17:97b1dd566b07
- Child:
- 23:6a9d776c9794
--- a/mbed_app.json Fri Dec 15 09:18:00 2017 +0700
+++ b/mbed_app.json Tue Jan 02 15:20:08 2018 +0000
@@ -1,13 +1,35 @@
{
"config": {
"network-interface": {
- "help": "options are ETHERNET,WIFI_ESP8266,WIFI_ODIN,MESH_LOWPAN_ND,MESH_THREAD",
+ "help": "options are ETHERNET, WIFI_ESP8266, WIFI_IDW0XX1, WIFI_ODIN, WIFI_RTW, MESH_LOWPAN_ND, MESH_THREAD, CELLULAR_ONBOARD",
"value": "ETHERNET"
},
"mesh_radio_type": {
- "help": "options are ATMEL, MCR20",
+ "help": "options are ATMEL, MCR20, SPIRIT1, EFR32",
"value": "ATMEL"
},
+ "wifi-ssid": {
+ "value": "\"SSID\""
+ },
+ "wifi-password": {
+ "value": "\"Password\""
+ },
+ "cellular-apn": {
+ "help": "Please provide the APN string for your SIM if it is not already included in APN_db.h.",
+ "value": "\"my_sims_apn\""
+ },
+ "cellular-username": {
+ "help": "May or may not be required for your APN, please consult your SIM provider.",
+ "value": "\"my_sim_apns_username\""
+ },
+ "cellular-password": {
+ "help": "May or may not be required for your APN, please consult your SIM provider.",
+ "value": "\"my_sim_apns_password\""
+ },
+ "cellular-sim-pin": {
+ "help": "Please provide the PIN for your SIM (as a four digit string) if your SIM is normally locked",
+ "value": "\"1234\""
+ },
"esp8266-tx": {
"help": "Pin used as TX (connects to ESP8266 RX)",
"value": "D1"
@@ -18,12 +40,6 @@
},
"esp8266-debug": {
"value": false
- },
- "wifi-ssid": {
- "value": "\"SSID\""
- },
- "wifi-password": {
- "value": "\"Password\""
}
},
"macros": ["MBEDTLS_USER_CONFIG_FILE=\"mbedtls_entropy_config.h\"",
Daniel Lee