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

Dependencies:   mbed-http

Committer:
ocomeni
Date:
Fri Jul 19 16:49:26 2019 +0000
Branch:
PassingRegression
Revision:
129:590bdc2dcf5b
Parent:
123:a49e9ffbaca6
Implementation of Access token acquisition; 1. make request with credentials - DONE; 2. get response - DONE; 3. extract Id and refresh tokens from response - DONE; 4. integrate with code - DONE; Testing ongoing

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__