
this is using the mbed os version 5-13-1
source/main.h@121:ac4f59839e4f, 2019-06-01 (annotated)
- Committer:
- ocomeni
- Date:
- Sat Jun 01 15:29:03 2019 +0000
- Branch:
- PassingRegression
- Revision:
- 121:ac4f59839e4f
- Parent:
- 114:b11bb96c09f3
- Child:
- 123:a49e9ffbaca6
- BLE AT commands and responses implemented; - configuration storage implemented; - configuration delete implemented; - factory reset implemented; BLE connection with Box tested ok so far.
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
ocomeni | 114:b11bb96c09f3 | 1 | #ifndef __MAIN_H__ |
ocomeni | 114:b11bb96c09f3 | 2 | #define __MAIN_H__ |
ocomeni | 114:b11bb96c09f3 | 3 | void print_memory_info(); |
ocomeni | 114:b11bb96c09f3 | 4 | void blinkLEDs(); |
ocomeni | 114:b11bb96c09f3 | 5 | void trigger_start_BLE(); |
ocomeni | 114:b11bb96c09f3 | 6 | void trigger_stop_BLE(); |
ocomeni | 114:b11bb96c09f3 | 7 | void trigger_start_WiFi(); |
ocomeni | 114:b11bb96c09f3 | 8 | void trigger_stop_WiFi(); |
ocomeni | 121:ac4f59839e4f | 9 | void saveConfiguration(nvstore_key_t configKey); |
ocomeni | 121:ac4f59839e4f | 10 | void resetConfiguration(); |
ocomeni | 121:ac4f59839e4f | 11 | bool deleteConfiguration(nvstore_key_t configKey); |
ocomeni | 114:b11bb96c09f3 | 12 | |
ocomeni | 114:b11bb96c09f3 | 13 | #endif // __MAIN_H__ |