ESP8266_swiss_army_board/src/app
2022-04-22 08:05:16 +02:00
..
AbstractParser.cpp Added a comment about why not using the strdup c function 2020-12-17 08:20:31 +01:00
AbstractParser.h Marked destructor as virtual 2019-09-08 19:11:22 +02:00
app.ino Renamed task_batt_sensing to task_sys_info as well as added the display auto off and wake up feature 2022-04-17 21:36:44 +02:00
BoardConfig.cpp Removed as many warnings as I could ... after enabling the all warning compiler flag 2022-03-29 23:25:27 +02:00
BoardConfig.h Removed a bunch of warnings + re added SPI_FULL_SPEED default value in the BoardConfig.h 2022-03-30 11:04:12 +02:00
CFGDictionary.h Entirely reworked the dictionary class with templates 2019-03-27 23:59:53 +01:00
CFGFileParser.cpp Removed as many warnings as I could ... after enabling the all warning compiler flag 2022-03-29 23:25:27 +02:00
CFGFileParser.h Updated the CFGFileParser.h to use the new utilities file 2020-12-19 20:43:45 +01:00
CFGParameterValue.cpp Removed fixed some warnings 2022-03-30 12:00:13 +02:00
CFGParameterValue.h Removed fixed some warnings 2022-03-30 12:00:13 +02:00
ConnectivityManager.cpp Added the persistent constructor parameter, as well as added the connect method to ease the class's instantiation 2022-04-17 21:58:10 +02:00
ConnectivityManager.h Added the persistent constructor parameter, as well as added the connect method to ease the class's instantiation 2022-04-17 21:58:10 +02:00
DashboardWSServer.cpp Created new class based on the WebSockets server class (no logic yet) 2020-02-26 11:08:20 +01:00
DashboardWSServer.h Created new class based on the WebSockets server class (no logic yet) 2020-02-26 11:08:20 +01:00
definition.h Moved functions from definition to utilities 2020-12-19 20:51:34 +01:00
Dictionary.h Added conditional macro to include some headers only when needed 2021-07-25 18:26:08 +02:00
DictionaryInterface.h Removed as many warnings as I could ... after enabling the all warning compiler flag 2022-03-29 23:25:27 +02:00
EventHandler.cpp Added the EventHandler class that monitors button presses 2020-12-09 22:40:53 +01:00
EventHandler.h Added the EventHandler class that monitors button presses 2020-12-09 22:40:53 +01:00
FTPClient.cpp Removed as many warnings as I could ... after enabling the all warning compiler flag 2022-03-29 23:25:27 +02:00
FTPClient.h Removed as many warnings as I could ... after enabling the all warning compiler flag 2022-03-29 23:25:27 +02:00
FTPServer.h Removed the use of the lastIndexOf function which was replaced by the builtin strrchr function 2022-04-17 21:54:41 +02:00
HttpClient.cpp Updated the sendHttpQuery method to now return an error code which tells the line corresponding to the return of the failure 2022-04-09 19:10:18 +02:00
HttpClient.h Corrected a spelling mistake 2022-04-17 21:53:17 +02:00
HttpConstants.h Added ico image type MIME support 2022-04-22 08:01:30 +02:00
IOManager.cpp Added the RX gpio pin as input with internal pull up since the signal it is sensing is in open drain config 2019-08-24 20:46:55 +02:00
IOManager.h Nothing Changed 2020-12-19 21:10:42 +01:00
List.h Removed as many warnings as I could ... after enabling the all warning compiler flag 2022-03-29 23:25:27 +02:00
NonBlockingDelay.cpp Added a new very simple class to cleanly perform non blocking delays 2022-04-04 21:39:33 +02:00
NonBlockingDelay.h Added a new very simple class to cleanly perform non blocking delays 2022-04-04 21:39:33 +02:00
PowerManager.cpp Added the setCpuFreq() method to change the cpu clock at run time 2019-11-17 20:32:08 +01:00
PowerManager.h Corrected header guards 2019-12-21 14:58:55 +01:00
Queue.h Mettre à jour 'src/app/Queue.h' 2020-07-17 12:49:08 +02:00
RtcManager.cpp Added new getTemperature method in order to read the internal temp of the DS3231 RTC chip 2019-10-31 21:44:21 +01:00
RtcManager.h Added new getTemperature method in order to read the internal temp of the DS3231 RTC chip 2019-10-31 21:44:21 +01:00
SAB.cpp Changed the way the ConnectivityManager is instantiated, it is no more newed and deleted 2022-04-17 21:52:02 +02:00
SAB.h Changed the way the ConnectivityManager is instantiated, it is no more newed and deleted 2022-04-17 21:52:02 +02:00
ScreenManager.cpp Added return value to displayNextView(); and displayPreviousView(); telling if the action was a success or not 2022-04-22 08:03:14 +02:00
ScreenManager.h Added return value to displayNextView(); and displayPreviousView(); telling if the action was a success or not 2022-04-22 08:02:51 +02:00
SDCardManager.cpp Removed as many warnings as I could ... after enabling the all warning compiler flag 2022-03-29 23:25:27 +02:00
SDCardManager.h Removed as many warnings as I could ... after enabling the all warning compiler flag 2022-03-29 23:25:27 +02:00
StringEntity.cpp Replaced dependency from definition.h to utilities.h 2020-12-19 21:05:11 +01:00
tasks.cpp Renamed the task_batt_sensing task to task_sys_info and added displayed information like IP address or RAM consumption 2022-04-17 21:35:32 +02:00
tasks.h Renamed the task_batt_sensing task to task_sys_info and added displayed information like IP address or RAM consumption 2022-04-17 21:35:32 +02:00
TaskSchedulerManager.cpp Removed as many warnings as I could ... after enabling the all warning compiler flag 2022-03-29 23:25:27 +02:00
TaskSchedulerManager.h Removed as many warnings as I could ... after enabling the all warning compiler flag 2022-03-29 23:25:27 +02:00
TCPClient.cpp Removed a bunch of warnings + re added SPI_FULL_SPEED default value in the BoardConfig.h 2022-03-30 11:04:12 +02:00
TCPClient.h Removed a bunch of warnings + re added SPI_FULL_SPEED default value in the BoardConfig.h 2022-03-30 11:04:12 +02:00
TCPServer.h Replaced NULL with nullptr, removed constant value attribute initialization from the initializer list 2022-04-17 21:48:56 +02:00
utilities.cpp Removed the lastIndexOf function returning the last occurence of a character in a string, using builtin strrchr instead 2022-04-17 21:33:27 +02:00
utilities.h Removed the lastIndexOf function returning the last occurence of a character in a string, using builtin strrchr instead 2022-04-17 21:33:27 +02:00
versions.h Updated version history 2022-04-17 21:26:02 +02:00
views.cpp Removed as many warnings as I could ... after enabling the all warning compiler flag 2022-03-29 23:25:27 +02:00
views.h Added a new view to display rtc info and renamed a few old views for clarity 2019-10-31 21:47:43 +01:00
webApi.cpp Updated some API endpoints due to the renaming of the injectApiHeader method 2022-04-05 21:05:24 +02:00
webApi.h Removed both sdCardMount and unMount api end points, they are now replaced by a single end point taking a parameter 2020-02-02 20:59:08 +01:00
WEBClient.cpp Added some comments, removed _httpRequestData.getParamsDataPointer which isn't used anymore 2022-04-17 21:43:17 +02:00
WEBClient.h Added some comments, removed _httpRequestData.getParamsDataPointer which isn't used anymore 2022-04-17 21:43:17 +02:00
WEBServer.h Started to add a method listing the files in a directory if the rsrc asked is a folder,like apache2 does. Not finished yet 2022-04-22 08:05:16 +02:00
WEBServerManager.cpp Officially retiring the WEBServerManager class which is superseded by the WEBServer class that have more features 2022-04-17 21:38:30 +02:00
WEBServerManager.h Officially retiring the WEBServerManager class which is superseded by the WEBServer class that have more features 2022-04-17 21:38:30 +02:00