This commit is contained in:
e2002
2023-06-02 14:01:01 +03:00
parent aba29fcf16
commit 942bc1cf74
3 changed files with 5 additions and 2 deletions

View File

@@ -226,6 +226,9 @@ Work is in progress...
--- ---
## Version history ## Version history
#### v0.9.236
- fix compilation error 'class NetServer' has no member named 'resetQueue'
#### v0.9.235 #### v0.9.235
- SD card playlist moved from SPIFFS to SD card - SD card playlist moved from SPIFFS to SD card
- new parameter #define SD_MAX_LEVELS - Search depth for files on SD card - new parameter #define SD_MAX_LEVELS - Search depth for files on SD card

View File

@@ -66,8 +66,8 @@ class NetServer {
#if IR_PIN!=255 #if IR_PIN!=255
void irToWs(const char* protocol, uint64_t irvalue); void irToWs(const char* protocol, uint64_t irvalue);
void irValsToWs(); void irValsToWs();
void resetQueue();
#endif #endif
void resetQueue();
private: private:
requestType_e request; requestType_e request;
QueueHandle_t nsQueue; QueueHandle_t nsQueue;

View File

@@ -1,7 +1,7 @@
#ifndef options_h #ifndef options_h
#define options_h #define options_h
#define YOVERSION "0.9.235" #define YOVERSION "0.9.236"
/******************************************************* /*******************************************************
DO NOT EDIT THIS FILE. DO NOT EDIT THIS FILE.