Skip to content

Commit

Permalink
Fix wrong GUI Module and Template drop down list indexes regression
Browse files Browse the repository at this point in the history
  • Loading branch information
arendst committed Nov 18, 2024
1 parent 320ad0e commit 3778f22
Show file tree
Hide file tree
Showing 6 changed files with 328 additions and 326 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ All notable changes to this project will be documented in this file.

### Fixed
- ESP32 upgrade by file upload response based on file size (#22500)
- Wrong GUI Module and Template drop down list indexes regression

### Removed

Expand Down
2 changes: 1 addition & 1 deletion tasmota/include/tasmota.h
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ const uint8_t MAX_I2S = 2; // Max number of Hardware I2S contro
const uint8_t MAX_RMT = 0; // Max number or RMT channels (0 if unknown)
#endif
#else
const uint8_t MAX_SPI = 0; // Max number of Hardware SPI controllers (ESP8266 = 0, no choice)
const uint8_t MAX_SPI = 1; // Max number of Hardware SPI controllers
const uint8_t MAX_I2S = 0; // Max number of Hardware I2S controllers (ESP8266 = 0, no choice)
const uint8_t MAX_RMT = 0; // No RMT channel on ESP8266
#endif
Expand Down
1 change: 1 addition & 0 deletions tasmota/include/tasmota_globals.h
Original file line number Diff line number Diff line change
Expand Up @@ -543,6 +543,7 @@ const char kWebColors[] PROGMEM =

#define AGPIO(x) ((x)<<5)
#define BGPIO(x) ((x)>>5)
#define AGMAX(x) ((x)?(x-1):0)

#ifdef USE_DEVICE_GROUPS
#define SendDeviceGroupMessage(DEVICE_INDEX, REQUEST_TYPE, ...) _SendDeviceGroupMessage(DEVICE_INDEX, REQUEST_TYPE, __VA_ARGS__, 0)
Expand Down
Loading

0 comments on commit 3778f22

Please sign in to comment.