this is using the mbed os version 5-13-1

Dependencies:   mbed-http

Committer:
ocomeni
Date:
Fri Jun 14 21:13:46 2019 +0000
Branch:
PassingRegression
Revision:
123:a49e9ffbaca6
Parent:
121:ac4f59839e4f
Implemented the following features:; 1. FW version; 2. BLE MAC address; 3. BLE name; 4. WiFi MAC address; Not fully tested

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ocomeni 114:b11bb96c09f3 1 #ifndef __MAIN_H__
ocomeni 114:b11bb96c09f3 2 #define __MAIN_H__
ocomeni 123:a49e9ffbaca6 3 #define API_MAJOR_VERSION 1
ocomeni 123:a49e9ffbaca6 4 #define API_MINOR_VERSION 0
ocomeni 123:a49e9ffbaca6 5 #define API_BUILD_NUMBER 122
ocomeni 114:b11bb96c09f3 6 void print_memory_info();
ocomeni 114:b11bb96c09f3 7 void blinkLEDs();
ocomeni 114:b11bb96c09f3 8 void trigger_start_BLE();
ocomeni 114:b11bb96c09f3 9 void trigger_stop_BLE();
ocomeni 114:b11bb96c09f3 10 void trigger_start_WiFi();
ocomeni 114:b11bb96c09f3 11 void trigger_stop_WiFi();
ocomeni 121:ac4f59839e4f 12 void saveConfiguration(nvstore_key_t configKey);
ocomeni 121:ac4f59839e4f 13 void resetConfiguration();
ocomeni 121:ac4f59839e4f 14 bool deleteConfiguration(nvstore_key_t configKey);
ocomeni 114:b11bb96c09f3 15
ocomeni 114:b11bb96c09f3 16 #endif // __MAIN_H__