diff --git a/CHANGELOG.md b/CHANGELOG.md index d245af292..0ca625dce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,7 @@ All notable changes to this project will be documented in this file. - Command ``SspmScan`` to rescan Sonoff SPM modbus - Support for MQ analog sensor for air quality by Francesco Adriani (#14581) - Command ``SetOption134 1`` to disable PWM auto-phasing for lights by default (new behavior) (#14590) +- Increase PWM channels to 16 (Esp32 only) ### Changed - BME68x-Sensor-API library from v3.5.9 to v4.4.7 diff --git a/I2CDEVICES.md b/I2CDEVICES.md index 65b38dae9..4593a859c 100644 --- a/I2CDEVICES.md +++ b/I2CDEVICES.md @@ -1,6 +1,5 @@ # I2C devices - -Tasmota supports several I2C devices but to use them they mostly need to be enabled at compile time to solve possible address conflicts. +Tasmota supports several I2C devices. To use them I2C and the device need to be enabled at compile time. I2C and some devices are supported also in the official releases. Devices can be de/-actived on runtime to solve possible address conflicts. (e.g. address 0x27 is used by multiple devices) Using command ``I2cDriver`` individual drivers can be enabled or disabled at runtime allowing duplicate I2C addresses at compile time. Use the Index from the table below to control I2C drivers like ``I2cDriver10 0`` for disabling BMP support. @@ -41,7 +40,7 @@ Index | Define | Driver | Device | Address(es) | Description 19 | USE_SI1145 | xsns_24 | SI1147 | 0x60 | Ultra violet index and light sensor 20 | USE_LM75AD | xsns_26 | LM75AD | 0x48 - 0x4F | Temperature sensor 21 | USE_APDS9960 | xsns_27 | APDS9960 | 0x39 | Proximity ambient light RGB and gesture sensor - 22 | USE_MCP230xx | xsns_29 | MCP23008 | 0x20 - 0x26 | 16-bit I/O expander + 22 | USE_MCP230xx | xsns_29 | MCP23008 | 0x20 - 0x26 | 8-bit I/O expander 22 | USE_MCP230xx | xsns_29 | MCP23017 | 0x20 - 0x26 | 16-bit I/O expander 23 | USE_MPR121 | xsns_30 | MPR121 | 0x5A - 0x5D | Proximity capacitive touch sensor 24 | USE_CCS811 | xsns_31 | CCS811 | 0x5A | Gas (TVOC) and air quality sensor diff --git a/boards/esp32s3.json b/boards/esp32s3.json new file mode 100644 index 000000000..fe2f14706 --- /dev/null +++ b/boards/esp32s3.json @@ -0,0 +1,35 @@ +{ + "build": { + "arduino":{ + "ldscript": "esp32s3_out.ld" + }, + "core": "esp32", + "extra_flags": "-DBOARD_HAS_PSRAM -DESP32_4M -DESP32S3", + "f_cpu": "240000000L", + "f_flash": "80000000L", + "flash_mode": "dout", + "mcu": "esp32s3", + "variant": "esp32s3", + "partitions": "esp32_partition_app1856k_spiffs320k.csv" + }, + "connectivity": [ + "wifi" + ], + "debug": { + "openocd_target": "esp32s3.cfg" + }, + "frameworks": [ + "espidf", + "arduino" + ], + "name": "Espressif Generic ESP32-S3 4M Flash, Tasmota 1856k Code/OTA, 320k FS", + "upload": { + "flash_size": "4MB", + "maximum_ram_size": 327680, + "maximum_size": 4194304, + "require_upload_port": true, + "speed": 460800 + }, + "url": "https://docs.espressif.com/projects/esp-idf/en/latest/esp32s3/hw-reference/esp32s3/", + "vendor": "Espressif" +} diff --git a/include/esp32x_fixes.h b/include/esp32x_fixes.h index 047a343c8..62a9c2824 100644 --- a/include/esp32x_fixes.h +++ b/include/esp32x_fixes.h @@ -52,6 +52,13 @@ #define HSPI_HOST SPI3_HOST #define VSPI_HOST SPI3_HOST +#elif CONFIG_IDF_TARGET_ESP32S3 +// SPI_HOST (SPI1_HOST) is not supported by the SPI Master and SPI Slave driver on ESP32-S2 and later +#define SPI_HOST SPI1_HOST +#define FSPI_HOST SPI2_HOST +#define HSPI_HOST SPI3_HOST +#define VSPI_HOST SPI3_HOST + #elif CONFIG_IDF_TARGET_ESP32C3 #define SPI_HOST SPI1_HOST #define HSPI_HOST SPI2_HOST diff --git a/lib/lib_display/Arduino_ST7789-gemu-1.0/Arduino_ST7789.cpp b/lib/lib_display/Arduino_ST7789-gemu-1.0/Arduino_ST7789.cpp index 7347fa74f..b51339b32 100644 --- a/lib/lib_display/Arduino_ST7789-gemu-1.0/Arduino_ST7789.cpp +++ b/lib/lib_display/Arduino_ST7789-gemu-1.0/Arduino_ST7789.cpp @@ -18,6 +18,7 @@ const uint16_t ST7789_colors[]={ST7789_BLACK,ST7789_WHITE,ST7789_RED,ST7789_GREE ST7789_LIGHTGREY,ST7789_DARKGREY,ST7789_ORANGE,ST7789_GREENYELLOW,ST7789_PINK}; #ifdef ESP32 +#include "esp8266toEsp32.h" #define ST7789_DIMMER #endif @@ -258,11 +259,9 @@ void Arduino_ST7789::commonInit(const uint8_t *cmdList) { } if (_bp>=0) { -#define ESP32_PWM_CHANNEL 1 +// #define ESP32_PWM_CHANNEL 1 #ifdef ST7789_DIMMER - ledcSetup(ESP32_PWM_CHANNEL,4000,8); - ledcAttachPin(_bp,ESP32_PWM_CHANNEL); - ledcWrite(ESP32_PWM_CHANNEL,128); + analogWrite(_bp, 128); #else pinMode(_bp, OUTPUT); #endif @@ -575,7 +574,8 @@ void Arduino_ST7789::DisplayOnff(int8_t on) { writecommand(ST7789_DISPON); //Display on if (_bp>=0) { #ifdef ST7789_DIMMER - ledcWrite(ESP32_PWM_CHANNEL,dimmer); + analogWrite(_bp, dimmer); + // ledcWrite(ESP32_PWM_CHANNEL,dimmer); #else digitalWrite(_bp,HIGH); #endif @@ -584,7 +584,8 @@ void Arduino_ST7789::DisplayOnff(int8_t on) { writecommand(ST7789_DISPOFF); if (_bp>=0) { #ifdef ST7789_DIMMER - ledcWrite(ESP32_PWM_CHANNEL,0); + analogWrite(_bp, 0); + // ledcWrite(ESP32_PWM_CHANNEL,0); #else digitalWrite(_bp,LOW); #endif @@ -598,7 +599,8 @@ void Arduino_ST7789::dim(uint8_t dim) { if (dimmer>15) dimmer=15; dimmer=((float)dimmer/15.0)*255.0; #ifdef ESP32 - ledcWrite(ESP32_PWM_CHANNEL,dimmer); + analogWrite(_bp, dimmer); + // ledcWrite(ESP32_PWM_CHANNEL,dimmer); #endif } diff --git a/lib/lib_display/Display_Renderer-gemu-1.0/src/renderer.cpp b/lib/lib_display/Display_Renderer-gemu-1.0/src/renderer.cpp index e09ab71a8..d71a77368 100644 --- a/lib/lib_display/Display_Renderer-gemu-1.0/src/renderer.cpp +++ b/lib/lib_display/Display_Renderer-gemu-1.0/src/renderer.cpp @@ -59,10 +59,10 @@ uint16_t Renderer::GetColorFromIndex(uint8_t index) { void Renderer::dim(uint8_t contrast) { uint8_t contrast8 = ((uint32_t)contrast * 255) / 15; - dim8(contrast8, contrast8); + dim10(contrast8, contrast8 * 4); } -void Renderer::dim8(uint8_t contrast, uint8_t contrast_gamma) { +void Renderer::dim10(uint8_t contrast, uint16_t contrast_gamma) { } diff --git a/lib/lib_display/Display_Renderer-gemu-1.0/src/renderer.h b/lib/lib_display/Display_Renderer-gemu-1.0/src/renderer.h index 3e3304fbb..925b0ad7d 100644 --- a/lib/lib_display/Display_Renderer-gemu-1.0/src/renderer.h +++ b/lib/lib_display/Display_Renderer-gemu-1.0/src/renderer.h @@ -72,7 +72,7 @@ public: virtual void Begin(int16_t p1,int16_t p2,int16_t p3); virtual void Updateframe(); virtual void dim(uint8_t contrast); // input has range 0..15 - virtual void dim8(uint8_t contrast, uint8_t contrast_gamma); // input has range 0..255, second arg has gamma correction for PWM + virtual void dim10(uint8_t contrast, uint16_t contrast_gamma); // input has range 0..255, second arg has gamma correction for PWM with 10 bits resolution virtual void pushColors(uint16_t *data, uint16_t len, boolean first); virtual void setAddrWindow(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1); virtual void invertDisplay(boolean i); diff --git a/lib/lib_display/ILI9341-gemu-1.0/ILI9341_2.cpp b/lib/lib_display/ILI9341-gemu-1.0/ILI9341_2.cpp index 4459eb957..2da8d4091 100644 --- a/lib/lib_display/ILI9341-gemu-1.0/ILI9341_2.cpp +++ b/lib/lib_display/ILI9341-gemu-1.0/ILI9341_2.cpp @@ -53,6 +53,7 @@ // ESP32 uses 2. SPI BUS, ESP8266 uses software spi #ifdef ESP32 +#include "esp8266toEsp32.h" #undef ILI9341_2_DIMMER #define ILI9341_2_DIMMER #undef ESP32_PWM_CHANNEL @@ -248,9 +249,7 @@ void ILI9341_2::init(uint16_t width, uint16_t height) { if (_bp >= 0) { #ifdef ILI9341_2_DIMMER - ledcSetup(ESP32_PWM_CHANNEL, 4000, 8); - ledcAttachPin(_bp, ESP32_PWM_CHANNEL); - ledcWrite(ESP32_PWM_CHANNEL, 128); + analogWrite(_bp, 511); #else pinMode(_bp, OUTPUT); #endif @@ -544,7 +543,8 @@ void ILI9341_2::DisplayOnff(int8_t on) { SPI_END_TRANSACTION(); if (_bp >= 0) { #ifdef ILI9341_2_DIMMER - ledcWrite(ESP32_PWM_CHANNEL, dimmer); + analogWrite(_bp, dimmer * 4); + // ledcWrite(ESP32_PWM_CHANNEL, dimmer); #else digitalWrite(_bp, HIGH); #endif @@ -557,7 +557,8 @@ void ILI9341_2::DisplayOnff(int8_t on) { SPI_END_TRANSACTION(); if (_bp >= 0) { #ifdef ILI9341_2_DIMMER - ledcWrite(ESP32_PWM_CHANNEL, 0); + analogWrite(_bp, 0); + // ledcWrite(ESP32_PWM_CHANNEL, 0); #else digitalWrite(_bp, LOW); #endif @@ -604,7 +605,8 @@ void ILI9341_2::dim(uint8_t dim) { dimmer=((float)dimmer/15.0)*255.0; #ifdef ESP32 if (_bp>=0) { - ledcWrite(ESP32_PWM_CHANNEL,dimmer); + analogWrite(_bp, dimmer * 4); + // ledcWrite(ESP32_PWM_CHANNEL,dimmer); } else { if (_hwspi>=2) { //ili9342_dimm(dim); diff --git a/lib/lib_display/UDisplay/uDisplay.cpp b/lib/lib_display/UDisplay/uDisplay.cpp index f6ac1a20b..4581cee9c 100755 --- a/lib/lib_display/UDisplay/uDisplay.cpp +++ b/lib/lib_display/UDisplay/uDisplay.cpp @@ -20,6 +20,10 @@ #include #include "uDisplay.h" +#ifdef ESP32 +#include "esp8266toEsp32.h" +#endif + // #define UDSP_DEBUG const uint16_t udisp_colors[]={UDISP_BLACK,UDISP_WHITE,UDISP_RED,UDISP_GREEN,UDISP_BLUE,UDISP_CYAN,UDISP_MAGENTA,\ @@ -428,9 +432,7 @@ Renderer *uDisplay::Init(void) { if (bpanel >= 0) { #ifdef ESP32 - ledcSetup(ESP32_PWM_CHANNEL, 977, 8); // use 10 bits resolution like in Light - ledcAttachPin(bpanel, ESP32_PWM_CHANNEL); - ledcWrite(ESP32_PWM_CHANNEL, 8); // 38/255 correspond roughly to 50% visual brighness (with Gamma) + analogWrite(bpanel, 32); #else pinMode(bpanel, OUTPUT); digitalWrite(bpanel, HIGH); @@ -1353,7 +1355,8 @@ void uDisplay::DisplayOnff(int8_t on) { if (dsp_on != 0xff) spi_command_one(dsp_on); if (bpanel >= 0) { #ifdef ESP32 - ledcWrite(ESP32_PWM_CHANNEL, dimmer8_gamma); + analogWrite(bpanel, dimmer10_gamma); + // ledcWrite(ESP32_PWM_CHANNEL, dimmer8_gamma); #else digitalWrite(bpanel, HIGH); #endif @@ -1363,7 +1366,8 @@ void uDisplay::DisplayOnff(int8_t on) { if (dsp_off != 0xff) spi_command_one(dsp_off); if (bpanel >= 0) { #ifdef ESP32 - ledcWrite(ESP32_PWM_CHANNEL, 0); + analogWrite(bpanel, 0); + // ledcWrite(ESP32_PWM_CHANNEL, 0); #else digitalWrite(bpanel, LOW); #endif @@ -1402,16 +1406,17 @@ void udisp_dimm(uint8_t dim); // } // dim is 0..255 -void uDisplay::dim8(uint8_t dim, uint8_t dim_gamma) { // dimmer with 8 bits resolution, 0..255. Gamma correction must be done by caller +void uDisplay::dim10(uint8_t dim, uint16_t dim_gamma) { // dimmer with 8 bits resolution, 0..255. Gamma correction must be done by caller dimmer8 = dim; - dimmer8_gamma = dim_gamma; + dimmer10_gamma = dim_gamma; if (ep_mode) { return; } #ifdef ESP32 // TODO should we also add a ESP8266 version for bpanel? if (bpanel >= 0) { // is the BaclPanel GPIO configured - ledcWrite(ESP32_PWM_CHANNEL, dimmer8_gamma); + analogWrite(bpanel, dimmer10_gamma); + // ledcWrite(ESP32_PWM_CHANNEL, dimmer8_gamma); } else if (dim_cbp) { dim_cbp(dim); } diff --git a/lib/lib_display/UDisplay/uDisplay.h b/lib/lib_display/UDisplay/uDisplay.h index 3dbc5aed7..b5eae65c5 100755 --- a/lib/lib_display/UDisplay/uDisplay.h +++ b/lib/lib_display/UDisplay/uDisplay.h @@ -74,9 +74,6 @@ enum uColorType { uCOLOR_BW, uCOLOR_COLOR }; #define SPI_DC_LOW if (spi_dc >= 0) GPIO_CLR_SLOW(spi_dc); #define SPI_DC_HIGH if (spi_dc >= 0) GPIO_SET_SLOW(spi_dc); - -#define ESP32_PWM_CHANNEL 1 - #define LUTMAXSIZE 64 class uDisplay : public Renderer { @@ -93,7 +90,7 @@ class uDisplay : public Renderer { uint16_t bgcol(void); int8_t color_type(void); // void dim(uint8_t dim); // original version with 4 bits resolution 0..15 - virtual void dim8(uint8_t dim, uint8_t dim_gamma); // dimmer with 8 bits resolution, 0..255. Gamma correction must be done by caller + virtual void dim10(uint8_t dim, uint16_t dim_gamma); // dimmer with 8 bits resolution, 0..255. Gamma correction must be done by caller with 10 bits resolution uint16_t GetColorFromIndex(uint8_t index); void setRotation(uint8_t m); void fillScreen(uint16_t color); @@ -186,7 +183,7 @@ class uDisplay : public Renderer { int8_t bpanel; // backbanel GPIO, -1 if none int8_t spi_miso; uint8_t dimmer8; // 8 bits resolution, 0..255 - uint8_t dimmer8_gamma; // 8 bits resolution, 0..255, gamma corrected + uint16_t dimmer10_gamma; // 10 bits resolution, 0..1023, gamma corrected SPIClass *uspi; uint8_t sspi; SPISettings spiSettings; diff --git a/lib/lib_div/OpenTherm-0.9.0/tasmota_lib_changes.md b/lib/lib_div/OpenTherm-0.9.0/tasmota_lib_changes.md new file mode 100644 index 000000000..148754d22 --- /dev/null +++ b/lib/lib_div/OpenTherm-0.9.0/tasmota_lib_changes.md @@ -0,0 +1,29 @@ +Attention when updating library. Changes in lib needed!! +All OpenTherm constants shall be prepended with `OPTH_` to avoid conflicts with other libs. + +See commit https://github.com/arendst/Tasmota/commit/960291729ccc7cb4da50108e5299d44a79cb06de + +As of OpenTherm-0.9.0, hte list is: + OPTH_NONE + OPTH_SUCCESS + OPTH_INVALID + OPTH_TIMEOUT + OPTH_READ_DATA + OPTH_READ + OPTH_WRITE_DATA + OPTH_WRITE + OPTH_INVALID_DATA + OPTH_RESERVED + OPTH_READ_ACK + OPTH_WRITE_ACK + OPTH_DATA_INVALID + OPTH_UNKNOWN_DATA_ID + OPTH_NOT_INITIALIZED + OPTH_READY + OPTH_DELAY + OPTH_REQUEST_SENDING + OPTH_RESPONSE_WAITING + OPTH_RESPONSE_START_BIT + OPTH_RESPONSE_RECEIVING + OPTH_RESPONSE_READY + OPTH_RESPONSE_INVALID diff --git a/lib/lib_div/lib_mail/src/wcs/esp8266/ESP_Mail_WCS.cpp b/lib/lib_div/lib_mail/src/wcs/esp8266/ESP_Mail_WCS.cpp index f24adaef3..d419a9249 100755 --- a/lib/lib_div/lib_mail/src/wcs/esp8266/ESP_Mail_WCS.cpp +++ b/lib/lib_div/lib_mail/src/wcs/esp8266/ESP_Mail_WCS.cpp @@ -50,7 +50,9 @@ extern "C" #include #include #include -#include +#ifdef ESP8266 + #include +#endif #include #if !CORE_MOCK diff --git a/lib/lib_ssl/tls_mini/src/WiFiClientSecureLightBearSSL.cpp b/lib/lib_ssl/tls_mini/src/WiFiClientSecureLightBearSSL.cpp index d714c4bd0..4028c4c5e 100755 --- a/lib/lib_ssl/tls_mini/src/WiFiClientSecureLightBearSSL.cpp +++ b/lib/lib_ssl/tls_mini/src/WiFiClientSecureLightBearSSL.cpp @@ -43,8 +43,8 @@ #include "lwip/netif.h" #ifdef ESP8266 #include + #include "c_types.h" #endif -#include "c_types.h" #include #undef DEBUG_TLS diff --git a/lib/libesp32/ESP32-to-ESP8266-compat/src/c_types.h b/lib/libesp32/ESP32-to-ESP8266-compat/src/c_types.h deleted file mode 100644 index 22f551391..000000000 --- a/lib/libesp32/ESP32-to-ESP8266-compat/src/c_types.h +++ /dev/null @@ -1,6 +0,0 @@ -#pragma once -/**/ -#include -#ifndef ICACHE_FLASH_ATTR -#define ICACHE_FLASH_ATTR -#endif diff --git a/lib/libesp32/ESP32-to-ESP8266-compat/src/eboot_command.h b/lib/libesp32/ESP32-to-ESP8266-compat/src/eboot_command.h deleted file mode 100644 index 992d014ea..000000000 --- a/lib/libesp32/ESP32-to-ESP8266-compat/src/eboot_command.h +++ /dev/null @@ -1,3 +0,0 @@ -// -// Compat with ESP32 -// diff --git a/lib/libesp32/ESP32-to-ESP8266-compat/src/esp8266toEsp32.cpp b/lib/libesp32/ESP32-to-ESP8266-compat/src/esp8266toEsp32.cpp index fbead560a..372d03a7a 100644 --- a/lib/libesp32/ESP32-to-ESP8266-compat/src/esp8266toEsp32.cpp +++ b/lib/libesp32/ESP32-to-ESP8266-compat/src/esp8266toEsp32.cpp @@ -13,58 +13,66 @@ along with this program. If not, see . */ -// + +#ifdef ESP32 + #include "Arduino.h" -//#include "lwip/apps/sntp.h" -#include - -// See libraries\ESP32\examples\ResetReason.ino -#if ESP_IDF_VERSION_MAJOR > 3 // IDF 4+ - #if CONFIG_IDF_TARGET_ESP32 // ESP32/PICO-D4 - #include "esp32/rom/rtc.h" - #elif CONFIG_IDF_TARGET_ESP32S2 // ESP32-S2 - #include "esp32s2/rom/rtc.h" - #elif CONFIG_IDF_TARGET_ESP32C3 // ESP32-C3 - #include "esp32c3/rom/rtc.h" - #else - #error Target CONFIG_IDF_TARGET is not supported - #endif -#else // ESP32 Before IDF 4.0 - #include "rom/rtc.h" -#endif - -#include #include "esp8266toEsp32.h" +#include "driver/ledc.h" + +// Tasmota Logging +extern void AddLog(uint32_t loglevel, PGM_P formatP, ...); +enum LoggingLevels {LOG_LEVEL_NONE, LOG_LEVEL_ERROR, LOG_LEVEL_INFO, LOG_LEVEL_DEBUG, LOG_LEVEL_DEBUG_MORE}; // ESP Stuff +// replicated from `tasmota.h` +#if defined(CONFIG_IDF_TARGET_ESP32) + const uint8_t MAX_PWMS = 16; // ESP32: 16 ledc PWM channels in total - TODO for now +#elif defined(CONFIG_IDF_TARGET_ESP32S2) + const uint8_t MAX_PWMS = 8; // ESP32S2: 8 ledc PWM channels in total +#elif defined(CONFIG_IDF_TARGET_ESP32S3) + const uint8_t MAX_PWMS = 8; // ESP32S2: 8 ledc PWM channels in total +#elif defined(CONFIG_IDF_TARGET_ESP32C3) + const uint8_t MAX_PWMS = 6; // ESP32C3: 6 ledc PWM channels in total +#else + const uint8_t MAX_PWMS = 5; // Unknown - revert to 5 PWM max +#endif + +// channel mapping +static uint8_t pwm_channel[MAX_PWMS]; +static uint32_t pwm_frequency = 977; // Default 977Hz +static uint8_t pwm_bit_num = 10; // Default 1023 +static bool pwm_impl_inited = false; // trigger initialization + /*********************************************************************************************\ * ESP32 analogWrite emulation support \*********************************************************************************************/ -#if CONFIG_IDF_TARGET_ESP32C3 - uint8_t _pwm_channel[PWM_SUPPORTED_CHANNELS] = { 99, 99, 99, 99, 99, 99 }; - uint32_t _pwm_frequency = 977; // Default 977Hz - uint8_t _pwm_bit_num = 10; // Default 1023 -#else // other ESP32 - uint8_t _pwm_channel[PWM_SUPPORTED_CHANNELS] = { 99, 99, 99, 99, 99, 99, 99, 99 }; - uint32_t _pwm_frequency = 977; // Default 977Hz - uint8_t _pwm_bit_num = 10; // Default 1023 -#endif // CONFIG_IDF_TARGET_ESP32C3 vs ESP32 +void _analogInit(void) { + if (pwm_impl_inited) return; + // set all channels to unaffected (255) + for (uint32_t i = 0; i < MAX_PWMS; i++) { + pwm_channel[i] = 255; + } + pwm_impl_inited = true; +} -uint32_t _analog_pin2chan(uint32_t pin) { - for (uint32_t channel = 0; channel < PWM_SUPPORTED_CHANNELS; channel++) { - if ((_pwm_channel[channel] < 99) && (_pwm_channel[channel] == pin)) { +int32_t _analog_pin2chan(uint32_t pin) { // returns -1 if uallocated + _analogInit(); // make sure the mapping array is initialized + for (uint32_t channel = 0; channel < MAX_PWMS; channel++) { + if ((pwm_channel[channel] < 255) && (pwm_channel[channel] == pin)) { return channel; } } - return 0; + return -1; } void _analogWriteFreqRange(void) { - for (uint32_t channel = 0; channel < PWM_SUPPORTED_CHANNELS; channel++) { - if (_pwm_channel[channel] < 99) { - ledcSetup(channel + PWM_CHANNEL_OFFSET, _pwm_frequency, _pwm_bit_num); + _analogInit(); // make sure the mapping array is initialized + for (uint32_t channel = 0; channel < MAX_PWMS; channel++) { + if (pwm_channel[channel] < 255) { + ledcSetup(channel, pwm_frequency, pwm_bit_num); } } } @@ -80,50 +88,43 @@ uint32_t _analogGetResolution(uint32_t x) { } void analogWriteRange(uint32_t range) { - _pwm_bit_num = _analogGetResolution(range); + pwm_bit_num = _analogGetResolution(range); _analogWriteFreqRange(); } void analogWriteFreq(uint32_t freq) { - _pwm_frequency = freq; + pwm_frequency = freq; _analogWriteFreqRange(); } -bool analogAttach(uint32_t pin) { +int32_t analogAttach(uint32_t pin) { // returns ledc channel used, or -1 if failed + _analogInit(); // make sure the mapping array is initialized // Find if pin is already attached - uint32_t channel; - for (channel = 0; channel < PWM_SUPPORTED_CHANNELS; channel++) { - if (_pwm_channel[channel] == pin) { - // Already attached - // Serial.printf("PWM: Already attached pin %d to channel %d\n", pin, channel); - return true; - } - } + int32_t channel = _analog_pin2chan(pin); + if (channel >= 0) { return channel; } // Find an empty channel - for (channel = 0; channel < PWM_SUPPORTED_CHANNELS; channel++) { - if (99 == _pwm_channel[channel]) { - _pwm_channel[channel] = pin; - ledcAttachPin(pin, channel + PWM_CHANNEL_OFFSET); - ledcSetup(channel + PWM_CHANNEL_OFFSET, _pwm_frequency, _pwm_bit_num); + for (channel = 0; channel < MAX_PWMS; channel++) { + if (255 == pwm_channel[channel]) { + pwm_channel[channel] = pin; + ledcAttachPin(pin, channel); + ledcSetup(channel, pwm_frequency, pwm_bit_num); // Serial.printf("PWM: New attach pin %d to channel %d\n", pin, channel); - return true; + return channel; } } // No more channels available - return false; + AddLog(LOG_LEVEL_INFO, "PWM: no more PWM (ledc) channel for GPIO %i", pin); + return -1; } // void analogWrite(uint8_t pin, int val); -extern "C" void __wrap__Z11analogWritehi(uint8_t pin, int val) -{ - uint32_t channel = _analog_pin2chan(pin); - if ( val >> (_pwm_bit_num-1) ) ++val; - ledcWrite(channel + PWM_CHANNEL_OFFSET, val); - // Serial.printf("write %d - %d\n",channel,val); +extern "C" void __wrap__Z11analogWritehi(uint8_t pin, int val) { + analogWritePhase(pin, val, 0); // if unspecified, use phase = 0 } + /* - The primary goal of this library is to add phase control to PWM ledc + The primary goal of this function is to add phase control to PWM ledc functions. Phase control allows to stress less the power supply of LED lights. @@ -142,35 +143,28 @@ extern "C" void __wrap__Z11analogWritehi(uint8_t pin, int val) implementation changes. */ -#include "driver/ledc.h" - -#ifdef SOC_LEDC_SUPPORT_HS_MODE -#define LEDC_CHANNELS (SOC_LEDC_CHANNEL_NUM<<1) -#else -#define LEDC_CHANNELS (SOC_LEDC_CHANNEL_NUM) -#endif - // exported from Arduno Core -extern uint8_t channels_resolution[LEDC_CHANNELS]; +extern uint8_t channels_resolution[MAX_PWMS]; void analogWritePhase(uint8_t pin, uint32_t duty, uint32_t phase) { - uint32_t chan = _analog_pin2chan(pin) + PWM_CHANNEL_OFFSET; - if (duty >> (_pwm_bit_num-1) ) ++duty; - - if(chan >= LEDC_CHANNELS){ - return; + int32_t chan = _analog_pin2chan(pin); + if (chan < 0) { // not yet allocated, try to allocate + chan = analogAttach(pin); + if (chan < 0) { return; } // failed } + + if (duty >> (pwm_bit_num-1) ) ++duty; // input is 0..1023 but PWM takes 0..1024 - so we skip at mid-range. It creates a small non-linearity + if (phase >> (pwm_bit_num-1) ) ++phase; + uint8_t group=(chan/8), channel=(chan%8); //Fixing if all bits in resolution is set = LEDC FULL ON uint32_t max_duty = (1 << channels_resolution[chan]) - 1; - phase = phase % max_duty; - - if(duty == max_duty){ // no sure whether this is needed anymore TODO - duty = max_duty + 1; - } + phase = phase & max_duty; ledc_set_duty_with_hpoint((ledc_mode_t)group, (ledc_channel_t)channel, duty, phase); ledc_update_duty((ledc_mode_t)group, (ledc_channel_t)channel); } + +#endif // ESP32 diff --git a/lib/libesp32/ESP32-to-ESP8266-compat/src/esp8266toEsp32.h b/lib/libesp32/ESP32-to-ESP8266-compat/src/esp8266toEsp32.h index adda5f2eb..b32e16bcf 100644 --- a/lib/libesp32/ESP32-to-ESP8266-compat/src/esp8266toEsp32.h +++ b/lib/libesp32/ESP32-to-ESP8266-compat/src/esp8266toEsp32.h @@ -13,39 +13,21 @@ along with this program. If not, see . */ -#pragma once +#ifndef __ESP8266TOESP32_H__ +#define __ESP8266TOESP32_H__ + #ifdef ESP32 -// my debug Stuff -#define Serial_Debug1(p) Serial.printf p -#define Serial_DebugX(p) // // basics // -// dummy defines -//#define SPIFFS_END (SPI_FLASH_SEC_SIZE * 200) -//#define SETTINGS_LOCATION SPIFFS_END - #include -#if CONFIG_IDF_TARGET_ESP32C3 - #define PWM_SUPPORTED_CHANNELS 6 - #define PWM_CHANNEL_OFFSET 1 // Webcam uses channel 0, so we offset standard PWM -#else // other ESP32 - #define PWM_SUPPORTED_CHANNELS 8 - #define PWM_CHANNEL_OFFSET 2 // Webcam uses channel 0, so we offset standard PWM -#endif // CONFIG_IDF_TARGET_ESP32C3 vs ESP32 -extern uint8_t _pwm_channel[PWM_SUPPORTED_CHANNELS]; -extern uint32_t _pwm_frequency; -extern uint8_t _pwm_bit_num; - -void _analogWriteFreqRange(void); // input range is in full range, ledc needs bits -uint32_t _analogGetResolution(uint32_t x); void analogWriteRange(uint32_t range); void analogWriteFreq(uint32_t freq); -bool analogAttach(uint32_t pin); +int32_t analogAttach(uint32_t pin); // returns the ledc channel, or -1 if failed. This is implicitly called by analogWrite if the channel was not already allocated void analogWrite(uint8_t pin, int val); // Extended version that also allows to change phase @@ -56,8 +38,6 @@ extern void analogWritePhase(uint8_t pin, uint32_t duty, uint32_t phase = 0); #define INPUT_PULLDOWN_16 INPUT_PULLUP -typedef double real64_t; - // // Time and Timer // @@ -71,7 +51,6 @@ typedef double real64_t; // Serial minimal type to hold the config typedef int SerConfu8; typedef int SerialConfig; -//#define analogWrite(a, b) // // UDP @@ -79,9 +58,6 @@ typedef int SerialConfig; //#define PortUdp_writestr(log_data) PortUdp.write((const uint8_t *)(log_data), strlen(log_data)) #define PortUdp_write(log_data, n) PortUdp.write((const uint8_t *)(log_data), n) -// -#define wifi_forceSleepBegin() - #undef LWIP_IPV6 #define REASON_DEFAULT_RST 0 // "Power on" normal startup by power on @@ -106,4 +82,5 @@ typedef int SerialConfig; #define STATION_IF 0 -#endif +#endif // ESP32 +#endif // __ESP8266TOESP32_H__ diff --git a/lib/libesp32/ESP32-to-ESP8266-compat/src/osapi.h b/lib/libesp32/ESP32-to-ESP8266-compat/src/osapi.h deleted file mode 100644 index 947de57cc..000000000 --- a/lib/libesp32/ESP32-to-ESP8266-compat/src/osapi.h +++ /dev/null @@ -1,8 +0,0 @@ -#pragma once -/**/ -#include -/* -#ifndef ICACHE_FLASH_ATTR -#define ICACHE_FLASH_ATTR -#endif -*/ diff --git a/lib/libesp32/berry/default/be_modtab.c b/lib/libesp32/berry/default/be_modtab.c index 989cad873..71b2a4875 100644 --- a/lib/libesp32/berry/default/be_modtab.c +++ b/lib/libesp32/berry/default/be_modtab.c @@ -41,6 +41,7 @@ be_extern_native_module(webserver); be_extern_native_module(flash); be_extern_native_module(path); be_extern_native_module(unishox); +be_extern_native_module(uuid); be_extern_native_module(animate); #ifdef USE_LVGL be_extern_native_module(lv); @@ -118,6 +119,7 @@ BERRY_LOCAL const bntvmodule* const be_module_table[] = { &be_native_module(light), #endif + &be_native_module(uuid), #ifdef USE_UNISHOX_COMPRESSION &be_native_module(unishox), #endif // USE_UNISHOX_COMPRESSION diff --git a/lib/libesp32/berry/generate/be_const_strtab.h b/lib/libesp32/berry/generate/be_const_strtab.h index 6bedac03a..4406e5ef7 100644 --- a/lib/libesp32/berry/generate/be_const_strtab.h +++ b/lib/libesp32/berry/generate/be_const_strtab.h @@ -41,12 +41,15 @@ extern const bcstring be_const_str_EVENT_DELETE; extern const bcstring be_const_str_EVENT_DRAW_MAIN; extern const bcstring be_const_str_EVENT_DRAW_PART_BEGIN; extern const bcstring be_const_str_EVENT_DRAW_PART_END; +extern const bcstring be_const_str_EXTERNAL_I2S; extern const bcstring be_const_str_False; extern const bcstring be_const_str_GET; extern const bcstring be_const_str_HTTP_GET; extern const bcstring be_const_str_HTTP_POST; extern const bcstring be_const_str_I2C_Driver; extern const bcstring be_const_str_I2C_X3A; +extern const bcstring be_const_str_INTERNAL_DAC; +extern const bcstring be_const_str_INTERNAL_PDM; extern const bcstring be_const_str_LVG_X3A_X20call_X20to_X20unsupported_X20callback; extern const bcstring be_const_str_LVG_X3A_X20object_X3A; extern const bcstring be_const_str_Leds; @@ -108,6 +111,7 @@ extern const bcstring be_const_str__X23init_X2Ebat; extern const bcstring be_const_str__X23preinit_X2Ebe; extern const bcstring be_const_str__X2502d_X25s_X2502d; extern const bcstring be_const_str__X2504d_X2D_X2502d_X2D_X2502dT_X2502d_X3A_X2502d_X3A_X2502d; +extern const bcstring be_const_str__X2508x_X2D_X2504x_X2D_X2504x_X2D_X2504x_X2D_X2504x_X2508x; extern const bcstring be_const_str__X25s_X2Eautoconf; extern const bcstring be_const_str__X26lt_X3BError_X3A_X20apply_X20new_X20or_X20remove_X26gt_X3B; extern const bcstring be_const_str__X26lt_X3BNone_X26gt_X3B; @@ -149,7 +153,7 @@ extern const bcstring be_const_str__X3Coption_X20value_X3D_X27reset_X27_X3E_X26l extern const bcstring be_const_str__X3Cp_X20style_X3D_X27width_X3A340px_X3B_X27_X3E_X3Cb_X3EException_X3A_X3C_X2Fb_X3E_X3Cbr_X3E_X27_X25s_X27_X3Cbr_X3E_X25s_X3C_X2Fp_X3E; extern const bcstring be_const_str__X3Cp_X3ECurrent_X20configuration_X3A_X20_X3C_X2Fp_X3E_X3Cp_X3E_X3Cb_X3E_X25s_X3C_X2Fb_X3E_X3C_X2Fp_X3E; extern const bcstring be_const_str__X3Cp_X3E_X3C_X2Fp_X3E_X3C_X2Ffieldset_X3E_X3Cp_X3E_X3C_X2Fp_X3E; -extern const bcstring be_const_str__X3Cp_X3E_X3Cform_X20id_X3Dac_X20action_X3D_X27ac_X27_X20style_X3D_X27display_X3A_X20block_X3B_X27_X20method_X3D_X27get_X27_X3E_X3Cbutton_X3E_X26_X23129668_X3B_X20Auto_X2Dconfiguration_X3C_X2Fbutton_X3E_X3C_X2Fform_X3E_X3C_X2Fp_X3E; +extern const bcstring be_const_str__X3Cp_X3E_X3Cform_X20id_X3Dac_X20action_X3D_X27ac_X27_X20style_X3D_X27display_X3A_X20block_X3B_X27_X20method_X3D_X27get_X27_X3E_X3Cbutton_X3EAuto_X2Dconfiguration_X3C_X2Fbutton_X3E_X3C_X2Fform_X3E_X3C_X2Fp_X3E; extern const bcstring be_const_str__X3Cp_X3E_X3Cform_X20id_X3Dreapply_X20style_X3D_X27display_X3A_X20block_X3B_X27_X20action_X3D_X27_X2Fac_X27_X20method_X3D_X27post_X27_X20; extern const bcstring be_const_str__X3Cp_X3E_X3Cform_X20id_X3Dzip_X20style_X3D_X27display_X3A_X20block_X3B_X27_X20action_X3D_X27_X2Fac_X27_X20method_X3D_X27post_X27_X20; extern const bcstring be_const_str__X3Cp_X3E_X3Csmall_X3E_X26nbsp_X3B_X28This_X20feature_X20requires_X20an_X20internet_X20connection_X29_X3C_X2Fsmall_X3E_X3C_X2Fp_X3E; @@ -333,6 +337,7 @@ extern const bcstring be_const_str_detect; extern const bcstring be_const_str_detected_X20on_X20bus; extern const bcstring be_const_str_digital_read; extern const bcstring be_const_str_digital_write; +extern const bcstring be_const_str_dimmer; extern const bcstring be_const_str_dirty; extern const bcstring be_const_str_display; extern const bcstring be_const_str_display_X2Eini; @@ -652,6 +657,7 @@ extern const bcstring be_const_str_set_channels; extern const bcstring be_const_str_set_chg_current; extern const bcstring be_const_str_set_dc_voltage; extern const bcstring be_const_str_set_dcdc_enable; +extern const bcstring be_const_str_set_exten; extern const bcstring be_const_str_set_first_time; extern const bcstring be_const_str_set_gain; extern const bcstring be_const_str_set_height; @@ -740,6 +746,7 @@ extern const bcstring be_const_str_unknown_X20instruction; extern const bcstring be_const_str_update; extern const bcstring be_const_str_upper; extern const bcstring be_const_str_url_encode; +extern const bcstring be_const_str_uuid4; extern const bcstring be_const_str_v; extern const bcstring be_const_str_value; extern const bcstring be_const_str_value_error; diff --git a/lib/libesp32/berry/generate/be_const_strtab_def.h b/lib/libesp32/berry/generate/be_const_strtab_def.h index a67a809c1..1f0996847 100644 --- a/lib/libesp32/berry/generate/be_const_strtab_def.h +++ b/lib/libesp32/berry/generate/be_const_strtab_def.h @@ -1,723 +1,729 @@ -be_define_const_str(, "", 2166136261u, 0, 0, &be_const_str_display_X2Eini); -be_define_const_str(_X0A, "\n", 252472541u, 0, 1, &be_const_str__X3Cp_X3ECurrent_X20configuration_X3A_X20_X3C_X2Fp_X3E_X3Cp_X3E_X3Cb_X3E_X25s_X3C_X2Fb_X3E_X3C_X2Fp_X3E); -be_define_const_str(_X20, " ", 621580159u, 0, 1, &be_const_str_widget_ctor_impl); -be_define_const_str(_X21_X3D, "!=", 2428715011u, 0, 2, &be_const_str__X23autoexec_X2Ebe); -be_define_const_str(_X21_X3D_X3D, "!==", 559817114u, 0, 3, &be_const_str_elements_X20must_X20be_X20a_X20lv_point); -be_define_const_str(_X23, "#", 638357778u, 0, 1, &be_const_str_line_dsc); -be_define_const_str(_X23autoexec_X2Ebat, "#autoexec.bat", 3382890497u, 0, 13, &be_const_str_pixels_buffer); -be_define_const_str(_X23autoexec_X2Ebe, "#autoexec.be", 1181757091u, 0, 12, &be_const_str_list_handlers); -be_define_const_str(_X23display_X2Eini, "#display.ini", 182218220u, 0, 12, &be_const_str_get_current_module_name); -be_define_const_str(_X23init_X2Ebat, "#init.bat", 3297595077u, 0, 9, &be_const_str_MD5); -be_define_const_str(_X23preinit_X2Ebe, "#preinit.be", 687035716u, 0, 11, &be_const_str__ptr); -be_define_const_str(_X2502d_X25s_X2502d, "%02d%s%02d", 1587999717u, 0, 10, &be_const_str_push_path); -be_define_const_str(_X2504d_X2D_X2502d_X2D_X2502dT_X2502d_X3A_X2502d_X3A_X2502d, "%04d-%02d-%02dT%02d:%02d:%02d", 3425528601u, 0, 29, &be_const_str_bus); -be_define_const_str(_X25s_X2Eautoconf, "%s.autoconf", 3560383524u, 0, 11, &be_const_str_delay); -be_define_const_str(_X26lt_X3BError_X3A_X20apply_X20new_X20or_X20remove_X26gt_X3B, "<Error: apply new or remove>", 2855507949u, 0, 34, &be_const_str_json); -be_define_const_str(_X26lt_X3BNone_X26gt_X3B, "<None>", 2602165498u, 0, 12, &be_const_str_AudioGeneratorMP3); -be_define_const_str(_X28_X29, "()", 685372826u, 0, 2, &be_const_str__dirty); -be_define_const_str(_X2B, "+", 772578730u, 0, 1, &be_const_str_a); -be_define_const_str(_X2C, ",", 688690635u, 0, 1, &be_const_str_TAP_X3A_X20Loaded_X20Tasmota_X20App_X20_X27_X25s_X27); -be_define_const_str(_X2D_X2D_X3A_X2D_X2D, "--:--", 1370615441u, 0, 5, &be_const_str_f); -be_define_const_str(_X2E, ".", 722245873u, 0, 1, &be_const_str_dirty); -be_define_const_str(_X2E_X2E, "..", 2748622605u, 0, 2, &be_const_str_content_flush); -be_define_const_str(_X2Eautoconf, ".autoconf", 2524679088u, 0, 9, &be_const_str_get_bat_voltage); -be_define_const_str(_X2Ebe, ".be", 1325797348u, 0, 3, &be_const_str__X3Cp_X3E_X3Cform_X20id_X3Dreapply_X20style_X3D_X27display_X3A_X20block_X3B_X27_X20action_X3D_X27_X2Fac_X27_X20method_X3D_X27post_X27_X20); -be_define_const_str(_X2Ebec, ".bec", 3985273221u, 0, 4, &be_const_str_Animate_X20pc_X20is_X20out_X20of_X20range); -be_define_const_str(_X2Elen, ".len", 850842136u, 0, 4, &be_const_str_super); -be_define_const_str(_X2Ep, ".p", 1171526419u, 0, 2, &be_const_str_SERIAL_6O2); -be_define_const_str(_X2Ep1, ".p1", 249175686u, 0, 3, &be_const_str_SERIAL_8E1); -be_define_const_str(_X2Ep2, ".p2", 232398067u, 0, 3, NULL); -be_define_const_str(_X2Esize, ".size", 1965188224u, 0, 5, &be_const_str_update); -be_define_const_str(_X2Etapp, ".tapp", 1363391594u, 0, 5, &be_const_str_attrdump); -be_define_const_str(_X2Ew, ".w", 1255414514u, 0, 2, &be_const_str__X3Coption_X20value_X3D_X27_X25s_X27_X3E_X25s_X3C_X2Foption_X3E); -be_define_const_str(_X2F, "/", 705468254u, 0, 1, &be_const_str_set_style_pad_right); -be_define_const_str(_X2F_X2Eautoconf, "/.autoconf", 2212074393u, 0, 10, &be_const_str_SERIAL_8E2); -be_define_const_str(_X2F_X3Frst_X3D, "/?rst=", 580074707u, 0, 6, &be_const_str_elif); -be_define_const_str(_X2Fac, "/ac", 3904651978u, 0, 3, &be_const_str_STATE_DEFAULT); -be_define_const_str(_X3A, ":", 1057798253u, 0, 1, &be_const_str_AudioFileSourceFS); -be_define_const_str(_X3C, "<", 957132539u, 0, 1, &be_const_str_base_class); -be_define_const_str(_X3C_X2Fform_X3E_X3C_X2Fp_X3E, "

", 3546571739u, 0, 11, &be_const_str_BRY_X3A_X20ERROR_X2C_X20bad_X20json_X3A_X20); -be_define_const_str(_X3C_X2Fselect_X3E_X3Cp_X3E_X3C_X2Fp_X3E, "

", 1863865923u, 0, 16, &be_const_str_CFG_X3A_X20Exception_X3E_X20_X27_X25s_X27_X20_X2D_X20_X25s); -be_define_const_str(_X3C_X3D, "<=", 2499223986u, 0, 2, &be_const_str_pc_rel); -be_define_const_str(_X3Cbutton_X20name_X3D_X27reapply_X27_X20class_X3D_X27button_X20bgrn_X27_X3ERe_X2Dapply_X20current_X20configuration_X3C_X2Fbutton_X3E, "", 3147934216u, 0, 82, &be_const_str__X3Cselect_X20name_X3D_X27zip_X27_X3E); -be_define_const_str(_X3Cbutton_X20name_X3D_X27zipapply_X27_X20class_X3D_X27button_X20bgrn_X27_X3EApply_X20configuration_X3C_X2Fbutton_X3E, "", 1205771629u, 0, 72, &be_const_str_as); -be_define_const_str(_X3Cfieldset_X3E_X3Cstyle_X3E_X2Ebdis_X7Bbackground_X3A_X23888_X3B_X7D_X2Ebdis_X3Ahover_X7Bbackground_X3A_X23888_X3B_X7D_X3C_X2Fstyle_X3E, "
", 842307168u, 0, 77, NULL); -be_define_const_str(_X3Cinstance_X3A_X20_X25s_X28_X25s_X2C_X20_X25s_X2C_X20_X25s_X29, "Choose a device configuration:
", 1336654704u, 0, 49, NULL); -be_define_const_str(_X3Clambda_X3E, "", 607256038u, 0, 8, &be_const_str_isinstance); -be_define_const_str(_X3Clegend_X3E_X3Cb_X20title_X3D_X27Autoconfiguration_X27_X3E_X26nbsp_X3BCurrent_X20auto_X2Dconfiguration_X3C_X2Fb_X3E_X3C_X2Flegend_X3E, " Current auto-configuration", 4212500780u, 0, 82, NULL); -be_define_const_str(_X3Clegend_X3E_X3Cb_X20title_X3D_X27New_X20autoconf_X27_X3E_X26nbsp_X3BSelect_X20new_X20auto_X2Dconfiguration_X3C_X2Fb_X3E_X3C_X2Flegend_X3E, " Select new auto-configuration", 1926223891u, 0, 80, &be_const_str__global_addr); +be_define_const_str(, "", 2166136261u, 0, 0, NULL); +be_define_const_str(_X0A, "\n", 252472541u, 0, 1, NULL); +be_define_const_str(_X20, " ", 621580159u, 0, 1, NULL); +be_define_const_str(_X21_X3D, "!=", 2428715011u, 0, 2, &be_const_str_group_def); +be_define_const_str(_X21_X3D_X3D, "!==", 559817114u, 0, 3, &be_const_str_GET); +be_define_const_str(_X23, "#", 638357778u, 0, 1, &be_const_str_no_X20GPIO_X20specified_X20for_X20neopixelbus); +be_define_const_str(_X23autoexec_X2Ebat, "#autoexec.bat", 3382890497u, 0, 13, &be_const_str_remove_rule); +be_define_const_str(_X23autoexec_X2Ebe, "#autoexec.be", 1181757091u, 0, 12, &be_const_str_fast_loop_enabled); +be_define_const_str(_X23display_X2Eini, "#display.ini", 182218220u, 0, 12, &be_const_str_ceil); +be_define_const_str(_X23init_X2Ebat, "#init.bat", 3297595077u, 0, 9, &be_const_str_EVENT_DRAW_PART_END); +be_define_const_str(_X23preinit_X2Ebe, "#preinit.be", 687035716u, 0, 11, &be_const_str_SERIAL_5N2); +be_define_const_str(_X2502d_X25s_X2502d, "%02d%s%02d", 1587999717u, 0, 10, &be_const_str_members); +be_define_const_str(_X2504d_X2D_X2502d_X2D_X2502dT_X2502d_X3A_X2502d_X3A_X2502d, "%04d-%02d-%02dT%02d:%02d:%02d", 3425528601u, 0, 29, &be_const_str_SERIAL_8E2); +be_define_const_str(_X2508x_X2D_X2504x_X2D_X2504x_X2D_X2504x_X2D_X2504x_X2508x, "%08x-%04x-%04x-%04x-%04x%08x", 1670063141u, 0, 28, &be_const_str__X3Cinstance_X3A_X20_X25s_X28_X25s_X2C_X20_X25s_X2C_X20_X25s_X29); +be_define_const_str(_X25s_X2Eautoconf, "%s.autoconf", 3560383524u, 0, 11, &be_const_str_destructor_cb); +be_define_const_str(_X26lt_X3BError_X3A_X20apply_X20new_X20or_X20remove_X26gt_X3B, "<Error: apply new or remove>", 2855507949u, 0, 34, &be_const_str__persist_X2Ejson); +be_define_const_str(_X26lt_X3BNone_X26gt_X3B, "<None>", 2602165498u, 0, 12, &be_const_str__X2Ep); +be_define_const_str(_X28_X29, "()", 685372826u, 0, 2, NULL); +be_define_const_str(_X2B, "+", 772578730u, 0, 1, &be_const_str_area); +be_define_const_str(_X2C, ",", 688690635u, 0, 1, &be_const_str_files); +be_define_const_str(_X2D_X2D_X3A_X2D_X2D, "--:--", 1370615441u, 0, 5, NULL); +be_define_const_str(_X2E, ".", 722245873u, 0, 1, &be_const_str__X3Clambda_X3E); +be_define_const_str(_X2E_X2E, "..", 2748622605u, 0, 2, &be_const_str_lv_obj_class); +be_define_const_str(_X2Eautoconf, ".autoconf", 2524679088u, 0, 9, &be_const_str_begin); +be_define_const_str(_X2Ebe, ".be", 1325797348u, 0, 3, &be_const_str__error); +be_define_const_str(_X2Ebec, ".bec", 3985273221u, 0, 4, NULL); +be_define_const_str(_X2Elen, ".len", 850842136u, 0, 4, &be_const_str_send_multicast); +be_define_const_str(_X2Ep, ".p", 1171526419u, 0, 2, &be_const_str_has_arg); +be_define_const_str(_X2Ep1, ".p1", 249175686u, 0, 3, NULL); +be_define_const_str(_X2Ep2, ".p2", 232398067u, 0, 3, &be_const_str__settings_def); +be_define_const_str(_X2Esize, ".size", 1965188224u, 0, 5, &be_const_str_contains); +be_define_const_str(_X2Etapp, ".tapp", 1363391594u, 0, 5, &be_const_str_EVENT_DRAW_PART_BEGIN); +be_define_const_str(_X2Ew, ".w", 1255414514u, 0, 2, NULL); +be_define_const_str(_X2F, "/", 705468254u, 0, 1, &be_const_str_every_50ms); +be_define_const_str(_X2F_X2Eautoconf, "/.autoconf", 2212074393u, 0, 10, &be_const_str_BRY_X3A_X20method_X20not_X20allowed_X2C_X20use_X20a_X20closure_X20like_X20_X27_X2F_X20args_X20_X2D_X3E_X20obj_X2Efunc_X28args_X29_X27); +be_define_const_str(_X2F_X3Frst_X3D, "/?rst=", 580074707u, 0, 6, NULL); +be_define_const_str(_X2Fac, "/ac", 3904651978u, 0, 3, &be_const_str_SERIAL_6O2); +be_define_const_str(_X3A, ":", 1057798253u, 0, 1, &be_const_str_web_sensor); +be_define_const_str(_X3C, "<", 957132539u, 0, 1, &be_const_str_minute); +be_define_const_str(_X3C_X2Fform_X3E_X3C_X2Fp_X3E, "

", 3546571739u, 0, 11, &be_const_str_CFG_X3A_X20loaded_X20_X27_X25s_X27); +be_define_const_str(_X3C_X2Fselect_X3E_X3Cp_X3E_X3C_X2Fp_X3E, "

", 1863865923u, 0, 16, &be_const_str_list); +be_define_const_str(_X3C_X3D, "<=", 2499223986u, 0, 2, &be_const_str_pin); +be_define_const_str(_X3Cbutton_X20name_X3D_X27reapply_X27_X20class_X3D_X27button_X20bgrn_X27_X3ERe_X2Dapply_X20current_X20configuration_X3C_X2Fbutton_X3E, "", 3147934216u, 0, 82, &be_const_str_iter); +be_define_const_str(_X3Cbutton_X20name_X3D_X27zipapply_X27_X20class_X3D_X27button_X20bgrn_X27_X3EApply_X20configuration_X3C_X2Fbutton_X3E, "", 1205771629u, 0, 72, NULL); +be_define_const_str(_X3Cfieldset_X3E_X3Cstyle_X3E_X2Ebdis_X7Bbackground_X3A_X23888_X3B_X7D_X2Ebdis_X3Ahover_X7Bbackground_X3A_X23888_X3B_X7D_X3C_X2Fstyle_X3E, "
", 842307168u, 0, 77, &be_const_str_CFG_X3A_X20loading_X20_X27_X25s_X27); +be_define_const_str(_X3Cinstance_X3A_X20_X25s_X28_X25s_X2C_X20_X25s_X2C_X20_X25s_X29, "Choose a device configuration:
", 1336654704u, 0, 49, &be_const_str_CFG_X3A_X20return_code_X3D_X25i); +be_define_const_str(_X3Clambda_X3E, "", 607256038u, 0, 8, &be_const_str_SERIAL_5O1); +be_define_const_str(_X3Clegend_X3E_X3Cb_X20title_X3D_X27Autoconfiguration_X27_X3E_X26nbsp_X3BCurrent_X20auto_X2Dconfiguration_X3C_X2Fb_X3E_X3C_X2Flegend_X3E, " Current auto-configuration", 4212500780u, 0, 82, &be_const_str_SERIAL_7E2); +be_define_const_str(_X3Clegend_X3E_X3Cb_X20title_X3D_X27New_X20autoconf_X27_X3E_X26nbsp_X3BSelect_X20new_X20auto_X2Dconfiguration_X3C_X2Fb_X3E_X3C_X2Flegend_X3E, " Select new auto-configuration", 1926223891u, 0, 80, &be_const_str_None); be_define_const_str(_X3Coption_X20value_X3D_X27_X25s_X27_X3E_X25s_X3C_X2Foption_X3E, "", 510303524u, 0, 30, NULL); -be_define_const_str(_X3Coption_X20value_X3D_X27reset_X27_X3E_X26lt_X3BRemove_X20autoconf_X26gt_X3B_X3C_X2Foption_X3E, "", 3994619755u, 0, 54, &be_const_str_Leds); -be_define_const_str(_X3Cp_X20style_X3D_X27width_X3A340px_X3B_X27_X3E_X3Cb_X3EException_X3A_X3C_X2Fb_X3E_X3Cbr_X3E_X27_X25s_X27_X3Cbr_X3E_X25s_X3C_X2Fp_X3E, "

Exception:
'%s'
%s

", 4252565082u, 0, 59, &be_const_str_AudioGenerator); -be_define_const_str(_X3Cp_X3E_X3C_X2Fp_X3E_X3C_X2Ffieldset_X3E_X3Cp_X3E_X3C_X2Fp_X3E, "

", 2052843416u, 0, 25, NULL); -be_define_const_str(_X3Cp_X3E_X3Cform_X20id_X3Dac_X20action_X3D_X27ac_X27_X20style_X3D_X27display_X3A_X20block_X3B_X27_X20method_X3D_X27get_X27_X3E_X3Cbutton_X3E_X26_X23129668_X3B_X20Auto_X2Dconfiguration_X3C_X2Fbutton_X3E_X3C_X2Fform_X3E_X3C_X2Fp_X3E, "

", 452285201u, 0, 120, &be_const_str_gc); -be_define_const_str(_X3Cp_X3E_X3Cform_X20id_X3Dreapply_X20style_X3D_X27display_X3A_X20block_X3B_X27_X20action_X3D_X27_X2Fac_X27_X20method_X3D_X27post_X27_X20, "

 (This feature requires an internet connection)

", 2719266486u, 0, 74, &be_const_str_get_style_pad_right); -be_define_const_str(_X3Cp_X3ECurrent_X20configuration_X3A_X20_X3C_X2Fp_X3E_X3Cp_X3E_X3Cb_X3E_X25s_X3C_X2Fb_X3E_X3C_X2Fp_X3E, "

Current configuration:

%s

", 4115655761u, 0, 46, &be_const_str_i2c_enabled); -be_define_const_str(_X3Cselect_X20name_X3D_X27zip_X27_X3E, "", 4247924536u, 0, 19, NULL); +be_define_const_str(_X3D, "=", 940354920u, 0, 1, &be_const_str_scan); +be_define_const_str(_X3D_X3C_X3E_X21, "=<>!", 2664470277u, 0, 4, &be_const_str_CFG_X3A_X20loaded_X20_X20); +be_define_const_str(_X3D_X3D, "==", 2431966415u, 0, 2, &be_const_str_attrdump); +be_define_const_str(_X3E, ">", 990687777u, 0, 1, &be_const_str__debug_present); +be_define_const_str(_X3E_X3D, ">=", 284975636u, 0, 2, &be_const_str_autorun); +be_define_const_str(_X3F, "?", 973910158u, 0, 1, &be_const_str__X5D); +be_define_const_str(AES_GCM, "AES_GCM", 3832208678u, 0, 7, &be_const_str_can_show); +be_define_const_str(AXP192, "AXP192", 757230128u, 0, 6, &be_const_str_animate); +be_define_const_str(Animate_X20pc_X20is_X20out_X20of_X20range, "Animate pc is out of range", 1854929421u, 0, 26, NULL); +be_define_const_str(AudioFileSource, "AudioFileSource", 2959980058u, 0, 15, &be_const_str_eth); +be_define_const_str(AudioFileSourceFS, "AudioFileSourceFS", 1839147653u, 0, 17, &be_const_str_get_current_module_name); be_define_const_str(AudioGenerator, "AudioGenerator", 1839297342u, 0, 14, &be_const_str_chars_in_string); -be_define_const_str(AudioGeneratorMP3, "AudioGeneratorMP3", 2199818488u, 0, 17, &be_const_str_consume_stereo); -be_define_const_str(AudioGeneratorWAV, "AudioGeneratorWAV", 2746509368u, 0, 17, &be_const_str_lv_signal_arcs); -be_define_const_str(AudioOutput, "AudioOutput", 3257792048u, 0, 11, &be_const_str_HTTP_GET); -be_define_const_str(AudioOutputI2S, "AudioOutputI2S", 638031784u, 0, 14, &be_const_str_CFG_X3A_X20running_X20); -be_define_const_str(Auto_X2Dconfiguration, "Auto-configuration", 1665006109u, 0, 18, &be_const_str_erase); -be_define_const_str(BRY_X3A_X20ERROR_X2C_X20bad_X20json_X3A_X20, "BRY: ERROR, bad json: ", 2715135809u, 0, 22, &be_const_str_fromptr); -be_define_const_str(BRY_X3A_X20Exception_X3E_X20_X27_X25s_X27_X20_X2D_X20_X25s, "BRY: Exception> '%s' - %s", 2246990964u, 0, 25, &be_const_str_skip); -be_define_const_str(BRY_X3A_X20could_X20not_X20save_X20compiled_X20file_X20_X25s_X20_X28_X25s_X29, "BRY: could not save compiled file %s (%s)", 736659787u, 0, 41, &be_const_str_solidified); -be_define_const_str(BRY_X3A_X20failed_X20to_X20load_X20_persist_X2Ejson, "BRY: failed to load _persist.json", 2991913445u, 0, 33, NULL); -be_define_const_str(BRY_X3A_X20method_X20not_X20allowed_X2C_X20use_X20a_X20closure_X20like_X20_X27_X2F_X20args_X20_X2D_X3E_X20obj_X2Efunc_X28args_X29_X27, "BRY: method not allowed, use a closure like '/ args -> obj.func(args)'", 177121572u, 0, 70, &be_const_str_EVENT_DRAW_PART_END); -be_define_const_str(BUTTON_CONFIGURATION, "BUTTON_CONFIGURATION", 70820856u, 0, 20, &be_const_str_before_del); -be_define_const_str(CFG_X3A_X20_X27init_X2Ebat_X27_X20done_X2C_X20restarting, "CFG: 'init.bat' done, restarting", 1569670677u, 0, 32, &be_const_str_decode); -be_define_const_str(CFG_X3A_X20Exception_X3E_X20_X27_X25s_X27_X20_X2D_X20_X25s, "CFG: Exception> '%s' - %s", 1228874553u, 0, 25, &be_const_str__ccmd); -be_define_const_str(CFG_X3A_X20No_X20_X27_X2A_X2Eautoconf_X27_X20file_X20found, "CFG: No '*.autoconf' file found", 755798501u, 0, 31, NULL); -be_define_const_str(CFG_X3A_X20could_X20not_X20run_X20_X25s_X20_X28_X25s_X20_X2D_X20_X25s_X29, "CFG: could not run %s (%s - %s)", 1428829580u, 0, 31, &be_const_str_listdir); -be_define_const_str(CFG_X3A_X20downloading_X20_X27_X25s_X27, "CFG: downloading '%s'", 589480701u, 0, 21, &be_const_str_SERIAL_6N1); -be_define_const_str(CFG_X3A_X20exception_X20_X27_X25s_X27_X20_X2D_X20_X27_X25s_X27, "CFG: exception '%s' - '%s'", 4095407913u, 0, 26, &be_const_str_atan2); -be_define_const_str(CFG_X3A_X20loaded_X20_X20, "CFG: loaded ", 3710273538u, 0, 13, NULL); -be_define_const_str(CFG_X3A_X20loaded_X20_X27_X25s_X27, "CFG: loaded '%s'", 1699028828u, 0, 16, &be_const_str_c); -be_define_const_str(CFG_X3A_X20loading_X20, "CFG: loading ", 4010361503u, 0, 13, &be_const_str_due); -be_define_const_str(CFG_X3A_X20loading_X20_X27_X25s_X27, "CFG: loading '%s'", 2285306097u, 0, 17, &be_const_str_arg_size); -be_define_const_str(CFG_X3A_X20multiple_X20autoconf_X20files_X20found_X2C_X20aborting_X20_X28_X27_X25s_X27_X20_X2B_X20_X27_X25s_X27_X29, "CFG: multiple autoconf files found, aborting ('%s' + '%s')", 197663371u, 0, 58, &be_const_str_POST); -be_define_const_str(CFG_X3A_X20ran_X20_X20, "CFG: ran ", 3579570472u, 0, 10, NULL); -be_define_const_str(CFG_X3A_X20removed_X20file_X20_X27_X25s_X27, "CFG: removed file '%s'", 2048602473u, 0, 22, NULL); -be_define_const_str(CFG_X3A_X20removing_X20autoconf_X20files, "CFG: removing autoconf files", 4014704970u, 0, 28, &be_const_str_begin); -be_define_const_str(CFG_X3A_X20removing_X20first_X20time_X20marker, "CFG: removing first time marker", 2125556683u, 0, 31, &be_const_str_byte); -be_define_const_str(CFG_X3A_X20return_code_X3D_X25i, "CFG: return_code=%i", 2059897320u, 0, 19, &be_const_str_OPTION_A); -be_define_const_str(CFG_X3A_X20running_X20, "CFG: running ", 2478334534u, 0, 13, NULL); -be_define_const_str(CFG_X3A_X20skipping_X20_X27display_X2Eini_X27_X20because_X20already_X20present_X20in_X20file_X2Dsystem, "CFG: skipping 'display.ini' because already present in file-system", 3965549264u, 0, 66, &be_const_str__archive); -be_define_const_str(COLOR_BLACK, "COLOR_BLACK", 264427940u, 0, 11, &be_const_str_pin_mode); -be_define_const_str(COLOR_WHITE, "COLOR_WHITE", 2536871270u, 0, 11, NULL); -be_define_const_str(EC_C25519, "EC_C25519", 95492591u, 0, 9, &be_const_str_I2C_X3A); -be_define_const_str(EVENT_DELETE, "EVENT_DELETE", 282828603u, 0, 12, &be_const_str_bool); -be_define_const_str(EVENT_DRAW_MAIN, "EVENT_DRAW_MAIN", 1955620614u, 0, 15, &be_const_str_OpusDecoder); -be_define_const_str(EVENT_DRAW_PART_BEGIN, "EVENT_DRAW_PART_BEGIN", 3391865024u, 0, 21, &be_const_str_fromstring); -be_define_const_str(EVENT_DRAW_PART_END, "EVENT_DRAW_PART_END", 3301625292u, 0, 19, &be_const_str_enabled); -be_define_const_str(False, "False", 2541049336u, 0, 5, NULL); -be_define_const_str(GET, "GET", 2531704439u, 0, 3, &be_const_str_https_X3A_X2F_X2Fraw_X2Egithubusercontent_X2Ecom_X2Ftasmota_X2Fautoconf_X2Fmain_X2F_X25s_X2F_X25s_X2Eautoconf); -be_define_const_str(HTTP_GET, "HTTP_GET", 1722467738u, 0, 8, &be_const_str_lv_extra); -be_define_const_str(HTTP_POST, "HTTP_POST", 1999554144u, 0, 9, &be_const_str_matrix); -be_define_const_str(I2C_X3A, "I2C:", 813483371u, 0, 4, &be_const_str_exec_tele); -be_define_const_str(I2C_Driver, "I2C_Driver", 1714501658u, 0, 10, &be_const_str_battery_present); -be_define_const_str(LVG_X3A_X20call_X20to_X20unsupported_X20callback, "LVG: call to unsupported callback", 504176819u, 0, 33, &be_const_str_argument_X20must_X20be_X20a_X20function); -be_define_const_str(LVG_X3A_X20object_X3A, "LVG: object:", 3824079937u, 0, 12, &be_const_str_connect); -be_define_const_str(Leds, "Leds", 2709245275u, 0, 4, &be_const_str_valuer_error); +be_define_const_str(AudioGeneratorMP3, "AudioGeneratorMP3", 2199818488u, 0, 17, &be_const_str_decompress); +be_define_const_str(AudioGeneratorWAV, "AudioGeneratorWAV", 2746509368u, 0, 17, &be_const_str_SERIAL_6E2); +be_define_const_str(AudioOutput, "AudioOutput", 3257792048u, 0, 11, &be_const_str_CFG_X3A_X20loading_X20); +be_define_const_str(AudioOutputI2S, "AudioOutputI2S", 638031784u, 0, 14, &be_const_str_check_privileged_access); +be_define_const_str(Auto_X2Dconfiguration, "Auto-configuration", 1665006109u, 0, 18, &be_const_str_draw_line); +be_define_const_str(BRY_X3A_X20ERROR_X2C_X20bad_X20json_X3A_X20, "BRY: ERROR, bad json: ", 2715135809u, 0, 22, &be_const_str_wifi_arcs); +be_define_const_str(BRY_X3A_X20Exception_X3E_X20_X27_X25s_X27_X20_X2D_X20_X25s, "BRY: Exception> '%s' - %s", 2246990964u, 0, 25, &be_const_str_CFG_X3A_X20Exception_X3E_X20_X27_X25s_X27_X20_X2D_X20_X25s); +be_define_const_str(BRY_X3A_X20could_X20not_X20save_X20compiled_X20file_X20_X25s_X20_X28_X25s_X29, "BRY: could not save compiled file %s (%s)", 736659787u, 0, 41, &be_const_str_editable); +be_define_const_str(BRY_X3A_X20failed_X20to_X20load_X20_persist_X2Ejson, "BRY: failed to load _persist.json", 2991913445u, 0, 33, &be_const_str_public_key); +be_define_const_str(BRY_X3A_X20method_X20not_X20allowed_X2C_X20use_X20a_X20closure_X20like_X20_X27_X2F_X20args_X20_X2D_X3E_X20obj_X2Efunc_X28args_X29_X27, "BRY: method not allowed, use a closure like '/ args -> obj.func(args)'", 177121572u, 0, 70, &be_const_str_event); +be_define_const_str(BUTTON_CONFIGURATION, "BUTTON_CONFIGURATION", 70820856u, 0, 20, &be_const_str_issubclass); +be_define_const_str(CFG_X3A_X20_X27init_X2Ebat_X27_X20done_X2C_X20restarting, "CFG: 'init.bat' done, restarting", 1569670677u, 0, 32, NULL); +be_define_const_str(CFG_X3A_X20Exception_X3E_X20_X27_X25s_X27_X20_X2D_X20_X25s, "CFG: Exception> '%s' - %s", 1228874553u, 0, 25, &be_const_str_y1); +be_define_const_str(CFG_X3A_X20No_X20_X27_X2A_X2Eautoconf_X27_X20file_X20found, "CFG: No '*.autoconf' file found", 755798501u, 0, 31, &be_const_str__dirty); +be_define_const_str(CFG_X3A_X20could_X20not_X20run_X20_X25s_X20_X28_X25s_X20_X2D_X20_X25s_X29, "CFG: could not run %s (%s - %s)", 1428829580u, 0, 31, &be_const_str_hex); +be_define_const_str(CFG_X3A_X20downloading_X20_X27_X25s_X27, "CFG: downloading '%s'", 589480701u, 0, 21, &be_const_str_consume_mono); +be_define_const_str(CFG_X3A_X20exception_X20_X27_X25s_X27_X20_X2D_X20_X27_X25s_X27, "CFG: exception '%s' - '%s'", 4095407913u, 0, 26, &be_const_str_CFG_X3A_X20removing_X20autoconf_X20files); +be_define_const_str(CFG_X3A_X20loaded_X20_X20, "CFG: loaded ", 3710273538u, 0, 13, &be_const_str_OPTION_A); +be_define_const_str(CFG_X3A_X20loaded_X20_X27_X25s_X27, "CFG: loaded '%s'", 1699028828u, 0, 16, &be_const_str_argument_X20must_X20be_X20a_X20function); +be_define_const_str(CFG_X3A_X20loading_X20, "CFG: loading ", 4010361503u, 0, 13, &be_const_str_lv_extra); +be_define_const_str(CFG_X3A_X20loading_X20_X27_X25s_X27, "CFG: loading '%s'", 2285306097u, 0, 17, &be_const_str_type); +be_define_const_str(CFG_X3A_X20multiple_X20autoconf_X20files_X20found_X2C_X20aborting_X20_X28_X27_X25s_X27_X20_X2B_X20_X27_X25s_X27_X29, "CFG: multiple autoconf files found, aborting ('%s' + '%s')", 197663371u, 0, 58, &be_const_str_cb_event_closure); +be_define_const_str(CFG_X3A_X20ran_X20_X20, "CFG: ran ", 3579570472u, 0, 10, &be_const_str_erase); +be_define_const_str(CFG_X3A_X20removed_X20file_X20_X27_X25s_X27, "CFG: removed file '%s'", 2048602473u, 0, 22, &be_const_str_arch); +be_define_const_str(CFG_X3A_X20removing_X20autoconf_X20files, "CFG: removing autoconf files", 4014704970u, 0, 28, &be_const_str_SERIAL_7O1); +be_define_const_str(CFG_X3A_X20removing_X20first_X20time_X20marker, "CFG: removing first time marker", 2125556683u, 0, 31, &be_const_str_display_X2Eini); +be_define_const_str(CFG_X3A_X20return_code_X3D_X25i, "CFG: return_code=%i", 2059897320u, 0, 19, &be_const_str_page_autoconf_ctl); +be_define_const_str(CFG_X3A_X20running_X20, "CFG: running ", 2478334534u, 0, 13, &be_const_str__settings_ptr); +be_define_const_str(CFG_X3A_X20skipping_X20_X27display_X2Eini_X27_X20because_X20already_X20present_X20in_X20file_X2Dsystem, "CFG: skipping 'display.ini' because already present in file-system", 3965549264u, 0, 66, &be_const_str_ctypes_bytes); +be_define_const_str(COLOR_BLACK, "COLOR_BLACK", 264427940u, 0, 11, NULL); +be_define_const_str(COLOR_WHITE, "COLOR_WHITE", 2536871270u, 0, 11, &be_const_str__); +be_define_const_str(EC_C25519, "EC_C25519", 95492591u, 0, 9, &be_const_str_addr); +be_define_const_str(EVENT_DELETE, "EVENT_DELETE", 282828603u, 0, 12, &be_const_str_clear_to); +be_define_const_str(EVENT_DRAW_MAIN, "EVENT_DRAW_MAIN", 1955620614u, 0, 15, NULL); +be_define_const_str(EVENT_DRAW_PART_BEGIN, "EVENT_DRAW_PART_BEGIN", 3391865024u, 0, 21, &be_const_str_available); +be_define_const_str(EVENT_DRAW_PART_END, "EVENT_DRAW_PART_END", 3301625292u, 0, 19, &be_const_str_asin); +be_define_const_str(EXTERNAL_I2S, "EXTERNAL_I2S", 4067456169u, 0, 12, &be_const_str_toupper); +be_define_const_str(False, "False", 2541049336u, 0, 5, &be_const_str_rad); +be_define_const_str(GET, "GET", 2531704439u, 0, 3, &be_const_str_get_coords); +be_define_const_str(HTTP_GET, "HTTP_GET", 1722467738u, 0, 8, &be_const_str_pow); +be_define_const_str(HTTP_POST, "HTTP_POST", 1999554144u, 0, 9, &be_const_str_k); +be_define_const_str(I2C_X3A, "I2C:", 813483371u, 0, 4, &be_const_str_out_X20of_X20range); +be_define_const_str(I2C_Driver, "I2C_Driver", 1714501658u, 0, 10, &be_const_str_lv_wifi_arcs_icon); +be_define_const_str(INTERNAL_DAC, "INTERNAL_DAC", 1097623719u, 0, 12, NULL); +be_define_const_str(INTERNAL_PDM, "INTERNAL_PDM", 3043685628u, 0, 12, &be_const_str_SERIAL_8N1); +be_define_const_str(LVG_X3A_X20call_X20to_X20unsupported_X20callback, "LVG: call to unsupported callback", 504176819u, 0, 33, &be_const_str_event_send); +be_define_const_str(LVG_X3A_X20object_X3A, "LVG: object:", 3824079937u, 0, 12, &be_const_str_arg_name); +be_define_const_str(Leds, "Leds", 2709245275u, 0, 4, &be_const_str_item); be_define_const_str(MD5, "MD5", 1935726387u, 0, 3, NULL); -be_define_const_str(None, "None", 810547195u, 0, 4, &be_const_str_font_seg7); -be_define_const_str(OPTION_A, "OPTION_A", 1133299440u, 0, 8, NULL); -be_define_const_str(OneWire, "OneWire", 2298990722u, 0, 7, &be_const_str__fl); -be_define_const_str(OpusDecoder, "OpusDecoder", 3618742074u, 0, 11, &be_const_str_size); -be_define_const_str(PART_MAIN, "PART_MAIN", 2473491508u, 0, 9, &be_const_str_string); -be_define_const_str(POST, "POST", 1929554311u, 0, 4, &be_const_str_unknown_X20instruction); -be_define_const_str(Parameter_X20error, "Parameter error", 3840042038u, 0, 15, &be_const_str_addr); -be_define_const_str(RES_OK, "RES_OK", 1233817284u, 0, 6, &be_const_str_lv_obj_class); -be_define_const_str(Restart_X201, "Restart 1", 3504455855u, 0, 9, &be_const_str_widget_destructor); -be_define_const_str(SERIAL_5E1, "SERIAL_5E1", 1163775235u, 0, 10, &be_const_str_cb_event_closure); -be_define_const_str(SERIAL_5E2, "SERIAL_5E2", 1180552854u, 0, 10, &be_const_str_count); -be_define_const_str(SERIAL_5N1, "SERIAL_5N1", 3313031680u, 0, 10, &be_const_str__read); -be_define_const_str(SERIAL_5N2, "SERIAL_5N2", 3363364537u, 0, 10, &be_const_str_readline); -be_define_const_str(SERIAL_5O1, "SERIAL_5O1", 3782657917u, 0, 10, &be_const_str__settings_def); -be_define_const_str(SERIAL_5O2, "SERIAL_5O2", 3732325060u, 0, 10, &be_const_str_decompress); -be_define_const_str(SERIAL_6E1, "SERIAL_6E1", 334249486u, 0, 10, &be_const_str_widget_editable); -be_define_const_str(SERIAL_6E2, "SERIAL_6E2", 317471867u, 0, 10, NULL); -be_define_const_str(SERIAL_6N1, "SERIAL_6N1", 198895701u, 0, 10, &be_const_str_arg); -be_define_const_str(SERIAL_6N2, "SERIAL_6N2", 148562844u, 0, 10, &be_const_str_gamma); -be_define_const_str(SERIAL_6O1, "SERIAL_6O1", 266153272u, 0, 10, &be_const_str_WS2812_GRB); -be_define_const_str(SERIAL_6O2, "SERIAL_6O2", 316486129u, 0, 10, &be_const_str_load); -be_define_const_str(SERIAL_7E1, "SERIAL_7E1", 147718061u, 0, 10, &be_const_str_deg); -be_define_const_str(SERIAL_7E2, "SERIAL_7E2", 97385204u, 0, 10, &be_const_str_SERIAL_7O2); -be_define_const_str(SERIAL_7N1, "SERIAL_7N1", 1891060246u, 0, 10, &be_const_str__timers); -be_define_const_str(SERIAL_7N2, "SERIAL_7N2", 1874282627u, 0, 10, NULL); -be_define_const_str(SERIAL_7O1, "SERIAL_7O1", 1823802675u, 0, 10, &be_const_str_SERIAL_8N1); -be_define_const_str(SERIAL_7O2, "SERIAL_7O2", 1840580294u, 0, 10, &be_const_str_SERIAL_8N2); -be_define_const_str(SERIAL_8E1, "SERIAL_8E1", 2371121616u, 0, 10, &be_const_str_files); -be_define_const_str(SERIAL_8E2, "SERIAL_8E2", 2421454473u, 0, 10, &be_const_str_consume_mono); -be_define_const_str(SERIAL_8N1, "SERIAL_8N1", 2369297235u, 0, 10, &be_const_str_collect); -be_define_const_str(SERIAL_8N2, "SERIAL_8N2", 2386074854u, 0, 10, &be_const_str_clear); -be_define_const_str(SERIAL_8O1, "SERIAL_8O1", 289122742u, 0, 10, &be_const_str_deinit); -be_define_const_str(SERIAL_8O2, "SERIAL_8O2", 272345123u, 0, 10, &be_const_str_dump); -be_define_const_str(SK6812_GRBW, "SK6812_GRBW", 81157857u, 0, 11, &be_const_str_arch); -be_define_const_str(STATE_DEFAULT, "STATE_DEFAULT", 712406428u, 0, 13, &be_const_str_finish); -be_define_const_str(TAP_X3A_X20Loaded_X20Tasmota_X20App_X20_X27_X25s_X27, "TAP: Loaded Tasmota App '%s'", 926477145u, 0, 28, &be_const_str__debug_present); -be_define_const_str(Tasmota, "Tasmota", 4047617668u, 0, 7, &be_const_str_instance); -be_define_const_str(Tele, "Tele", 1329980653u, 0, 4, NULL); -be_define_const_str(Timer, "Timer", 3948127682u, 0, 5, &be_const_str_Unknown_X20command); -be_define_const_str(True, "True", 3453902341u, 0, 4, &be_const_str_clock_icon); -be_define_const_str(Unknown_X20command, "Unknown command", 1830905432u, 0, 15, &be_const_str_calldepth); -be_define_const_str(WS2812, "WS2812", 3539741218u, 0, 6, &be_const_str_has_arg); -be_define_const_str(WS2812_GRB, "WS2812_GRB", 1736405692u, 0, 10, &be_const_str_debug); -be_define_const_str(Wire, "Wire", 1938276536u, 0, 4, NULL); -be_define_const_str(_X5B, "[", 3725336506u, 0, 1, NULL); -be_define_const_str(_X5D, "]", 3624670792u, 0, 1, &be_const_str_connected); -be_define_const_str(_, "_", 3658226030u, 0, 1, &be_const_str_get_width); -be_define_const_str(__iterator__, "__iterator__", 3884039703u, 0, 12, &be_const_str_animators); -be_define_const_str(__lower__, "__lower__", 123855590u, 0, 9, &be_const_str_detect); -be_define_const_str(__upper__, "__upper__", 3612202883u, 0, 9, &be_const_str_draw_line_dsc); -be_define_const_str(_anonymous_, "_anonymous_", 1957281476u, 0, 11, &be_const_str_pc); -be_define_const_str(_archive, "_archive", 4004559404u, 0, 8, &be_const_str_set_percentage); -be_define_const_str(_available, "_available", 1306196581u, 0, 10, &be_const_str_autoexec); -be_define_const_str(_begin_transmission, "_begin_transmission", 2779461176u, 0, 19, NULL); -be_define_const_str(_buffer, "_buffer", 2044888568u, 0, 7, &be_const_str_decrypt); -be_define_const_str(_ccmd, "_ccmd", 2163421413u, 0, 5, &be_const_str_deregister_obj); -be_define_const_str(_class, "_class", 2732146350u, 0, 6, &be_const_str_get_bat_charge_current); -be_define_const_str(_cmd, "_cmd", 3419822142u, 0, 4, &be_const_str_dac_voltage); -be_define_const_str(_debug_present, "_debug_present", 4063411725u, 0, 14, &be_const_str_call_native); -be_define_const_str(_def, "_def", 1985022181u, 0, 4, &be_const_str_point); -be_define_const_str(_dirty, "_dirty", 283846766u, 0, 6, &be_const_str_button_pressed); -be_define_const_str(_drivers, "_drivers", 3260328985u, 0, 8, &be_const_str__write); -be_define_const_str(_end_transmission, "_end_transmission", 3237480400u, 0, 17, NULL); -be_define_const_str(_energy, "_energy", 535372070u, 0, 7, &be_const_str_animate); -be_define_const_str(_error, "_error", 1132109656u, 0, 6, &be_const_str_closure); -be_define_const_str(_filename, "_filename", 1430813195u, 0, 9, &be_const_str_reset_search); -be_define_const_str(_fl, "_fl", 4042564892u, 0, 3, &be_const_str_fast_loop); -be_define_const_str(_global_addr, "_global_addr", 533766721u, 0, 12, NULL); -be_define_const_str(_global_def, "_global_def", 646007001u, 0, 11, NULL); -be_define_const_str(_lvgl, "_lvgl", 2689219483u, 0, 5, &be_const_str_create_matrix); -be_define_const_str(_p, "_p", 1594591802u, 0, 2, &be_const_str_format); -be_define_const_str(_persist_X2Ejson, "_persist.json", 2008425138u, 0, 13, &be_const_str_instance_size); -be_define_const_str(_ptr, "_ptr", 306235816u, 0, 4, &be_const_str_fast_loop_enabled); -be_define_const_str(_read, "_read", 346717030u, 0, 5, &be_const_str_signal_bars); -be_define_const_str(_request_from, "_request_from", 3965148604u, 0, 13, &be_const_str_is_first_time); -be_define_const_str(_rules, "_rules", 4266217105u, 0, 6, NULL); -be_define_const_str(_settings_def, "_settings_def", 3775560307u, 0, 13, &be_const_str_setbits); -be_define_const_str(_settings_ptr, "_settings_ptr", 1825772182u, 0, 13, &be_const_str_str); -be_define_const_str(_t, "_t", 1527481326u, 0, 2, &be_const_str_page_autoconf_ctl); -be_define_const_str(_timers, "_timers", 2600100916u, 0, 7, &be_const_str_find_op); -be_define_const_str(_write, "_write", 2215462825u, 0, 6, NULL); -be_define_const_str(a, "a", 3826002220u, 0, 1, &be_const_str_add); -be_define_const_str(abs, "abs", 709362235u, 0, 3, &be_const_str_remove_timer); -be_define_const_str(acos, "acos", 1006755615u, 0, 4, &be_const_str_leds); -be_define_const_str(add, "add", 993596020u, 0, 3, &be_const_str_ins_ramp); -be_define_const_str(add_anim, "add_anim", 3980662668u, 0, 8, &be_const_str_compile); -be_define_const_str(add_cmd, "add_cmd", 3361630879u, 0, 7, &be_const_str_class); -be_define_const_str(add_driver, "add_driver", 1654458371u, 0, 10, &be_const_str_keys); -be_define_const_str(add_event_cb, "add_event_cb", 633097693u, 0, 12, &be_const_str_ctor); -be_define_const_str(add_fast_loop, "add_fast_loop", 3025842946u, 0, 13, &be_const_str_draw_line); -be_define_const_str(add_handler, "add_handler", 2055124119u, 0, 11, &be_const_str_atan); -be_define_const_str(add_header, "add_header", 927130612u, 0, 10, NULL); -be_define_const_str(add_rule, "add_rule", 596540743u, 0, 8, &be_const_str_ins_goto); -be_define_const_str(addr, "addr", 1087856498u, 0, 4, &be_const_str_cb); -be_define_const_str(allocated, "allocated", 429986098u, 0, 9, &be_const_str_check_privileged_access); -be_define_const_str(alternate, "alternate", 1140253277u, 0, 9, &be_const_str_content_button); -be_define_const_str(animate, "animate", 3885786800u, 0, 7, NULL); -be_define_const_str(animators, "animators", 279858213u, 0, 9, &be_const_str_set_power); -be_define_const_str(arch, "arch", 2952804297u, 0, 4, &be_const_str_open); -be_define_const_str(area, "area", 2601460036u, 0, 4, &be_const_str_param); +be_define_const_str(None, "None", 810547195u, 0, 4, &be_const_str_SERIAL_5N1); +be_define_const_str(OPTION_A, "OPTION_A", 1133299440u, 0, 8, &be_const_str_floor); +be_define_const_str(OneWire, "OneWire", 2298990722u, 0, 7, &be_const_str_var); +be_define_const_str(OpusDecoder, "OpusDecoder", 3618742074u, 0, 11, &be_const_str_json); +be_define_const_str(PART_MAIN, "PART_MAIN", 2473491508u, 0, 9, &be_const_str_json_fdump_list); +be_define_const_str(POST, "POST", 1929554311u, 0, 4, &be_const_str_find_op); +be_define_const_str(Parameter_X20error, "Parameter error", 3840042038u, 0, 15, &be_const_str_calldepth); +be_define_const_str(RES_OK, "RES_OK", 1233817284u, 0, 6, &be_const_str_depower); +be_define_const_str(Restart_X201, "Restart 1", 3504455855u, 0, 9, NULL); +be_define_const_str(SERIAL_5E1, "SERIAL_5E1", 1163775235u, 0, 10, &be_const_str_add_cmd); +be_define_const_str(SERIAL_5E2, "SERIAL_5E2", 1180552854u, 0, 10, &be_const_str_running); +be_define_const_str(SERIAL_5N1, "SERIAL_5N1", 3313031680u, 0, 10, NULL); +be_define_const_str(SERIAL_5N2, "SERIAL_5N2", 3363364537u, 0, 10, NULL); +be_define_const_str(SERIAL_5O1, "SERIAL_5O1", 3782657917u, 0, 10, &be_const_str_ins_goto); +be_define_const_str(SERIAL_5O2, "SERIAL_5O2", 3732325060u, 0, 10, &be_const_str_byte); +be_define_const_str(SERIAL_6E1, "SERIAL_6E1", 334249486u, 0, 10, &be_const_str_Tasmota); +be_define_const_str(SERIAL_6E2, "SERIAL_6E2", 317471867u, 0, 10, &be_const_str_the_X20second_X20argument_X20is_X20not_X20a_X20function); +be_define_const_str(SERIAL_6N1, "SERIAL_6N1", 198895701u, 0, 10, &be_const_str__t); +be_define_const_str(SERIAL_6N2, "SERIAL_6N2", 148562844u, 0, 10, &be_const_str_consume_silence); +be_define_const_str(SERIAL_6O1, "SERIAL_6O1", 266153272u, 0, 10, &be_const_str_create_custom_widget); +be_define_const_str(SERIAL_6O2, "SERIAL_6O2", 316486129u, 0, 10, NULL); +be_define_const_str(SERIAL_7E1, "SERIAL_7E1", 147718061u, 0, 10, &be_const_str_get_switch); +be_define_const_str(SERIAL_7E2, "SERIAL_7E2", 97385204u, 0, 10, &be_const_str__p); +be_define_const_str(SERIAL_7N1, "SERIAL_7N1", 1891060246u, 0, 10, NULL); +be_define_const_str(SERIAL_7N2, "SERIAL_7N2", 1874282627u, 0, 10, &be_const_str__anonymous_); +be_define_const_str(SERIAL_7O1, "SERIAL_7O1", 1823802675u, 0, 10, &be_const_str_url_encode); +be_define_const_str(SERIAL_7O2, "SERIAL_7O2", 1840580294u, 0, 10, &be_const_str_Timer); +be_define_const_str(SERIAL_8E1, "SERIAL_8E1", 2371121616u, 0, 10, &be_const_str__class); +be_define_const_str(SERIAL_8E2, "SERIAL_8E2", 2421454473u, 0, 10, &be_const_str_atan); +be_define_const_str(SERIAL_8N1, "SERIAL_8N1", 2369297235u, 0, 10, &be_const_str_delay); +be_define_const_str(SERIAL_8N2, "SERIAL_8N2", 2386074854u, 0, 10, &be_const_str_get_free_heap); +be_define_const_str(SERIAL_8O1, "SERIAL_8O1", 289122742u, 0, 10, &be_const_str_hour); +be_define_const_str(SERIAL_8O2, "SERIAL_8O2", 272345123u, 0, 10, &be_const_str_coord_arr); +be_define_const_str(SK6812_GRBW, "SK6812_GRBW", 81157857u, 0, 11, &be_const_str_get_vbus_voltage); +be_define_const_str(STATE_DEFAULT, "STATE_DEFAULT", 712406428u, 0, 13, &be_const_str_class_init_obj); +be_define_const_str(TAP_X3A_X20Loaded_X20Tasmota_X20App_X20_X27_X25s_X27, "TAP: Loaded Tasmota App '%s'", 926477145u, 0, 28, &be_const_str_https_X3A_X2F_X2Fraw_X2Egithubusercontent_X2Ecom_X2Ftasmota_X2Fautoconf_X2Fmain_X2F_X25s_manifest_X2Ejson); +be_define_const_str(Tasmota, "Tasmota", 4047617668u, 0, 7, NULL); +be_define_const_str(Tele, "Tele", 1329980653u, 0, 4, &be_const_str_exec_cmd); +be_define_const_str(Timer, "Timer", 3948127682u, 0, 5, NULL); +be_define_const_str(True, "True", 3453902341u, 0, 4, NULL); +be_define_const_str(Unknown_X20command, "Unknown command", 1830905432u, 0, 15, &be_const_str_get_style_line_color); +be_define_const_str(WS2812, "WS2812", 3539741218u, 0, 6, &be_const_str_call); +be_define_const_str(WS2812_GRB, "WS2812_GRB", 1736405692u, 0, 10, &be_const_str_couldn_X27t_X20not_X20initialize_X20noepixelbus); +be_define_const_str(Wire, "Wire", 1938276536u, 0, 4, &be_const_str_elif); +be_define_const_str(_X5B, "[", 3725336506u, 0, 1, &be_const_str_io_error); +be_define_const_str(_X5D, "]", 3624670792u, 0, 1, &be_const_str_debug); +be_define_const_str(_, "_", 3658226030u, 0, 1, &be_const_str_isrunning); +be_define_const_str(__iterator__, "__iterator__", 3884039703u, 0, 12, NULL); +be_define_const_str(__lower__, "__lower__", 123855590u, 0, 9, &be_const_str_fromstring); +be_define_const_str(__upper__, "__upper__", 3612202883u, 0, 9, &be_const_str_get); +be_define_const_str(_anonymous_, "_anonymous_", 1957281476u, 0, 11, &be_const_str_clear); +be_define_const_str(_archive, "_archive", 4004559404u, 0, 8, &be_const_str_insert); +be_define_const_str(_available, "_available", 1306196581u, 0, 10, NULL); +be_define_const_str(_begin_transmission, "_begin_transmission", 2779461176u, 0, 19, &be_const_str_get_alternate); +be_define_const_str(_buffer, "_buffer", 2044888568u, 0, 7, &be_const_str_dump); +be_define_const_str(_ccmd, "_ccmd", 2163421413u, 0, 5, &be_const_str_for); +be_define_const_str(_class, "_class", 2732146350u, 0, 6, &be_const_str_set_height); +be_define_const_str(_cmd, "_cmd", 3419822142u, 0, 4, &be_const_str_back_forth); +be_define_const_str(_debug_present, "_debug_present", 4063411725u, 0, 14, &be_const_str_instance_size); +be_define_const_str(_def, "_def", 1985022181u, 0, 4, &be_const_str_get_bri); +be_define_const_str(_dirty, "_dirty", 283846766u, 0, 6, &be_const_str_set_style_text_font); +be_define_const_str(_drivers, "_drivers", 3260328985u, 0, 8, &be_const_str_read8); +be_define_const_str(_end_transmission, "_end_transmission", 3237480400u, 0, 17, &be_const_str_create_segment); +be_define_const_str(_energy, "_energy", 535372070u, 0, 7, &be_const_str_get_input_power_status); +be_define_const_str(_error, "_error", 1132109656u, 0, 6, &be_const_str_add); +be_define_const_str(_filename, "_filename", 1430813195u, 0, 9, &be_const_str_pi); +be_define_const_str(_fl, "_fl", 4042564892u, 0, 3, &be_const_str_duration); +be_define_const_str(_global_addr, "_global_addr", 533766721u, 0, 12, &be_const_str_ismethod); +be_define_const_str(_global_def, "_global_def", 646007001u, 0, 11, &be_const_str_preinit); +be_define_const_str(_lvgl, "_lvgl", 2689219483u, 0, 5, NULL); +be_define_const_str(_p, "_p", 1594591802u, 0, 2, &be_const_str_engine); +be_define_const_str(_persist_X2Ejson, "_persist.json", 2008425138u, 0, 13, &be_const_str_get_style_bg_color); +be_define_const_str(_ptr, "_ptr", 306235816u, 0, 4, &be_const_str_arg_X20must_X20be_X20a_X20subclass_X20of_X20lv_obj); +be_define_const_str(_read, "_read", 346717030u, 0, 5, &be_const_str_dimmer); +be_define_const_str(_request_from, "_request_from", 3965148604u, 0, 13, &be_const_str_select); +be_define_const_str(_rules, "_rules", 4266217105u, 0, 6, &be_const_str_list_handlers); +be_define_const_str(_settings_def, "_settings_def", 3775560307u, 0, 13, NULL); +be_define_const_str(_settings_ptr, "_settings_ptr", 1825772182u, 0, 13, &be_const_str_color); +be_define_const_str(_t, "_t", 1527481326u, 0, 2, &be_const_str_module); +be_define_const_str(_timers, "_timers", 2600100916u, 0, 7, &be_const_str_clock_icon); +be_define_const_str(_write, "_write", 2215462825u, 0, 6, &be_const_str_show); +be_define_const_str(a, "a", 3826002220u, 0, 1, &be_const_str_add_event_cb); +be_define_const_str(abs, "abs", 709362235u, 0, 3, &be_const_str_rtc); +be_define_const_str(acos, "acos", 1006755615u, 0, 4, &be_const_str_font_montserrat); +be_define_const_str(add, "add", 993596020u, 0, 3, NULL); +be_define_const_str(add_anim, "add_anim", 3980662668u, 0, 8, &be_const_str_get_style_pad_right); +be_define_const_str(add_cmd, "add_cmd", 3361630879u, 0, 7, &be_const_str_assert); +be_define_const_str(add_driver, "add_driver", 1654458371u, 0, 10, NULL); +be_define_const_str(add_event_cb, "add_event_cb", 633097693u, 0, 12, &be_const_str_classname); +be_define_const_str(add_fast_loop, "add_fast_loop", 3025842946u, 0, 13, &be_const_str_has); +be_define_const_str(add_handler, "add_handler", 2055124119u, 0, 11, &be_const_str_json_fdump_any); +be_define_const_str(add_header, "add_header", 927130612u, 0, 10, &be_const_str_find); +be_define_const_str(add_rule, "add_rule", 596540743u, 0, 8, &be_const_str_load_templates); +be_define_const_str(addr, "addr", 1087856498u, 0, 4, &be_const_str_get_width); +be_define_const_str(allocated, "allocated", 429986098u, 0, 9, &be_const_str_file_X20extension_X20is_X20not_X20_X27_X2Ebe_X27_X20or_X20_X27_X2Ebec_X27); +be_define_const_str(alternate, "alternate", 1140253277u, 0, 9, &be_const_str_set_gain); +be_define_const_str(animate, "animate", 3885786800u, 0, 7, &be_const_str_lv_solidified); +be_define_const_str(animators, "animators", 279858213u, 0, 9, &be_const_str_decode); +be_define_const_str(arch, "arch", 2952804297u, 0, 4, &be_const_str_kv); +be_define_const_str(area, "area", 2601460036u, 0, 4, &be_const_str_atleast1); be_define_const_str(arg, "arg", 1047474471u, 0, 3, NULL); -be_define_const_str(arg_X20must_X20be_X20a_X20subclass_X20of_X20lv_obj, "arg must be a subclass of lv_obj", 1641882079u, 0, 32, &be_const_str_lv_signal_bars); -be_define_const_str(arg_name, "arg_name", 1345046155u, 0, 8, &be_const_str_zero); +be_define_const_str(arg_X20must_X20be_X20a_X20subclass_X20of_X20lv_obj, "arg must be a subclass of lv_obj", 1641882079u, 0, 32, NULL); +be_define_const_str(arg_name, "arg_name", 1345046155u, 0, 8, &be_const_str_is_first_time); be_define_const_str(arg_size, "arg_size", 3310243257u, 0, 8, NULL); be_define_const_str(argument_X20must_X20be_X20a_X20function, "argument must be a function", 527172389u, 0, 27, NULL); -be_define_const_str(argument_X20must_X20be_X20a_X20list, "argument must be a list", 3056915661u, 0, 23, &be_const_str_gen_cb); +be_define_const_str(argument_X20must_X20be_X20a_X20list, "argument must be a list", 3056915661u, 0, 23, &be_const_str_set_chg_current); be_define_const_str(as, "as", 1579491469u, 67, 2, NULL); -be_define_const_str(asin, "asin", 4272848550u, 0, 4, NULL); -be_define_const_str(assert, "assert", 2774883451u, 0, 6, &be_const_str_is_running); -be_define_const_str(asstring, "asstring", 1298225088u, 0, 8, &be_const_str_number); -be_define_const_str(atan, "atan", 108579519u, 0, 4, &be_const_str_fromb64); -be_define_const_str(atan2, "atan2", 3173440503u, 0, 5, NULL); -be_define_const_str(atleast1, "atleast1", 1956331672u, 0, 8, &be_const_str_cmd_res); -be_define_const_str(attrdump, "attrdump", 1521571304u, 0, 8, &be_const_str_available); -be_define_const_str(autoexec, "autoexec", 3676861891u, 0, 8, &be_const_str_send); -be_define_const_str(autorun, "autorun", 1447527407u, 0, 7, &be_const_str_minute); -be_define_const_str(available, "available", 1727918744u, 0, 9, &be_const_str_copy); -be_define_const_str(b, "b", 3876335077u, 0, 1, &be_const_str_set); -be_define_const_str(back_forth, "back_forth", 2665042062u, 0, 10, &be_const_str_write_bytes); +be_define_const_str(asin, "asin", 4272848550u, 0, 4, &be_const_str_save_before_restart); +be_define_const_str(assert, "assert", 2774883451u, 0, 6, &be_const_str_search); +be_define_const_str(asstring, "asstring", 1298225088u, 0, 8, &be_const_str_false); +be_define_const_str(atan, "atan", 108579519u, 0, 4, &be_const_str_log); +be_define_const_str(atan2, "atan2", 3173440503u, 0, 5, &be_const_str_call_native); +be_define_const_str(atleast1, "atleast1", 1956331672u, 0, 8, &be_const_str__X7Bs_X7DTemp_X20AXP_X7Bm_X7D_X25_X2E1f_X20_X26deg_X3BC_X7Be_X7D); +be_define_const_str(attrdump, "attrdump", 1521571304u, 0, 8, &be_const_str_set_light); +be_define_const_str(autoexec, "autoexec", 3676861891u, 0, 8, NULL); +be_define_const_str(autorun, "autorun", 1447527407u, 0, 7, &be_const_str_time_str); +be_define_const_str(available, "available", 1727918744u, 0, 9, &be_const_str_begin_multicast); +be_define_const_str(b, "b", 3876335077u, 0, 1, &be_const_str_finish); +be_define_const_str(back_forth, "back_forth", 2665042062u, 0, 10, NULL); be_define_const_str(base_class, "base_class", 1107737279u, 0, 10, NULL); -be_define_const_str(battery_present, "battery_present", 3588397058u, 0, 15, &be_const_str_every_50ms); -be_define_const_str(before_del, "before_del", 815924436u, 0, 10, &be_const_str_set_chg_current); -be_define_const_str(begin, "begin", 1748273790u, 0, 5, &be_const_str_clear_to); -be_define_const_str(begin_multicast, "begin_multicast", 57647915u, 0, 15, NULL); -be_define_const_str(bool, "bool", 3365180733u, 0, 4, &be_const_str_strip); +be_define_const_str(battery_present, "battery_present", 3588397058u, 0, 15, &be_const_str_exec_tele); +be_define_const_str(before_del, "before_del", 815924436u, 0, 10, &be_const_str_instance_X20required); +be_define_const_str(begin, "begin", 1748273790u, 0, 5, NULL); +be_define_const_str(begin_multicast, "begin_multicast", 57647915u, 0, 15, &be_const_str_get_percentage); +be_define_const_str(bool, "bool", 3365180733u, 0, 4, NULL); be_define_const_str(break, "break", 3378807160u, 58, 5, NULL); be_define_const_str(bri, "bri", 2112284244u, 0, 3, NULL); -be_define_const_str(bus, "bus", 1607822841u, 0, 3, &be_const_str_read_sensors); -be_define_const_str(button_pressed, "button_pressed", 1694209616u, 0, 14, &be_const_str_zip); -be_define_const_str(byte, "byte", 1683620383u, 0, 4, &be_const_str_json_fdump_list); -be_define_const_str(bytes, "bytes", 1706151940u, 0, 5, &be_const_str_set_timeouts); +be_define_const_str(bus, "bus", 1607822841u, 0, 3, &be_const_str_loop); +be_define_const_str(button_pressed, "button_pressed", 1694209616u, 0, 14, &be_const_str_offseta); +be_define_const_str(byte, "byte", 1683620383u, 0, 4, NULL); +be_define_const_str(bytes, "bytes", 1706151940u, 0, 5, NULL); be_define_const_str(c, "c", 3859557458u, 0, 1, NULL); -be_define_const_str(call, "call", 3018949801u, 0, 4, &be_const_str_content_stop); -be_define_const_str(call_native, "call_native", 1389147405u, 0, 11, &be_const_str_every_second); -be_define_const_str(calldepth, "calldepth", 3122364302u, 0, 9, &be_const_str_set_alternate); -be_define_const_str(can_show, "can_show", 960091187u, 0, 8, &be_const_str_constructor_cb); +be_define_const_str(call, "call", 3018949801u, 0, 4, &be_const_str_get_vbus_current); +be_define_const_str(call_native, "call_native", 1389147405u, 0, 11, &be_const_str_read_bytes); +be_define_const_str(calldepth, "calldepth", 3122364302u, 0, 9, NULL); +be_define_const_str(can_show, "can_show", 960091187u, 0, 8, &be_const_str_deg); be_define_const_str(cb, "cb", 1428787088u, 0, 2, NULL); -be_define_const_str(cb_do_nothing, "cb_do_nothing", 1488730702u, 0, 13, NULL); -be_define_const_str(cb_event_closure, "cb_event_closure", 3828267325u, 0, 16, &be_const_str_round_end); -be_define_const_str(cb_obj, "cb_obj", 1195696482u, 0, 6, &be_const_str_to_gamma); -be_define_const_str(ceil, "ceil", 1659167240u, 0, 4, NULL); -be_define_const_str(char, "char", 2823553821u, 0, 4, NULL); -be_define_const_str(chars_in_string, "chars_in_string", 3148785132u, 0, 15, &be_const_str_get_cb_list); -be_define_const_str(check_not_method, "check_not_method", 2597324607u, 0, 16, &be_const_str_point_arr); -be_define_const_str(check_privileged_access, "check_privileged_access", 3692933968u, 0, 23, NULL); +be_define_const_str(cb_do_nothing, "cb_do_nothing", 1488730702u, 0, 13, &be_const_str_content_stop); +be_define_const_str(cb_event_closure, "cb_event_closure", 3828267325u, 0, 16, &be_const_str_widget_event); +be_define_const_str(cb_obj, "cb_obj", 1195696482u, 0, 6, &be_const_str_classof); +be_define_const_str(ceil, "ceil", 1659167240u, 0, 4, &be_const_str_sinh); +be_define_const_str(char, "char", 2823553821u, 0, 4, &be_const_str_get_current_module_path); +be_define_const_str(chars_in_string, "chars_in_string", 3148785132u, 0, 15, &be_const_str_cos); +be_define_const_str(check_not_method, "check_not_method", 2597324607u, 0, 16, &be_const_str_count); +be_define_const_str(check_privileged_access, "check_privileged_access", 3692933968u, 0, 23, &be_const_str_write_gpio); be_define_const_str(class, "class", 2872970239u, 57, 5, NULL); -be_define_const_str(class_init_obj, "class_init_obj", 178410604u, 0, 14, &be_const_str_set_useragent); -be_define_const_str(classname, "classname", 1998589948u, 0, 9, NULL); -be_define_const_str(classof, "classof", 1796577762u, 0, 7, &be_const_str_kv); -be_define_const_str(clear, "clear", 1550717474u, 0, 5, &be_const_str_scale_uint); -be_define_const_str(clear_first_time, "clear_first_time", 632769909u, 0, 16, &be_const_str_width_def); -be_define_const_str(clear_to, "clear_to", 3528002130u, 0, 8, &be_const_str_connection_error); -be_define_const_str(clock_icon, "clock_icon", 544669651u, 0, 10, &be_const_str_value_error); -be_define_const_str(close, "close", 667630371u, 0, 5, &be_const_str_get_object_from_ptr); -be_define_const_str(closure, "closure", 1548407746u, 0, 7, &be_const_str_item); -be_define_const_str(cmd, "cmd", 4136785899u, 0, 3, &be_const_str_tolower); -be_define_const_str(cmd_res, "cmd_res", 921166762u, 0, 7, &be_const_str_tan); -be_define_const_str(code, "code", 4180765940u, 0, 4, &be_const_str_detected_X20on_X20bus); -be_define_const_str(codedump, "codedump", 1786337906u, 0, 8, &be_const_str_w); -be_define_const_str(collect, "collect", 2399039025u, 0, 7, &be_const_str_init); -be_define_const_str(color, "color", 1031692888u, 0, 5, NULL); +be_define_const_str(class_init_obj, "class_init_obj", 178410604u, 0, 14, &be_const_str_lv_signal_bars); +be_define_const_str(classname, "classname", 1998589948u, 0, 9, &be_const_str_tasmota); +be_define_const_str(classof, "classof", 1796577762u, 0, 7, &be_const_str_geti); +be_define_const_str(clear, "clear", 1550717474u, 0, 5, &be_const_str_cosh); +be_define_const_str(clear_first_time, "clear_first_time", 632769909u, 0, 16, &be_const_str_input); +be_define_const_str(clear_to, "clear_to", 3528002130u, 0, 8, &be_const_str_delete_all_configs); +be_define_const_str(clock_icon, "clock_icon", 544669651u, 0, 10, &be_const_str_settings); +be_define_const_str(close, "close", 667630371u, 0, 5, NULL); +be_define_const_str(closure, "closure", 1548407746u, 0, 7, NULL); +be_define_const_str(cmd, "cmd", 4136785899u, 0, 3, &be_const_str_imin); +be_define_const_str(cmd_res, "cmd_res", 921166762u, 0, 7, NULL); +be_define_const_str(code, "code", 4180765940u, 0, 4, &be_const_str_get_light); +be_define_const_str(codedump, "codedump", 1786337906u, 0, 8, NULL); +be_define_const_str(collect, "collect", 2399039025u, 0, 7, &be_const_str_strftime); +be_define_const_str(color, "color", 1031692888u, 0, 5, &be_const_str_v); be_define_const_str(compile, "compile", 1000265118u, 0, 7, NULL); -be_define_const_str(compress, "compress", 2818084237u, 0, 8, &be_const_str_from_to); +be_define_const_str(compress, "compress", 2818084237u, 0, 8, &be_const_str_remote_port); be_define_const_str(concat, "concat", 4124019837u, 0, 6, NULL); -be_define_const_str(connect, "connect", 2866859257u, 0, 7, &be_const_str_display); -be_define_const_str(connected, "connected", 1424938192u, 0, 9, NULL); -be_define_const_str(connection_error, "connection_error", 1358926260u, 0, 16, NULL); -be_define_const_str(constructor_cb, "constructor_cb", 2489105297u, 0, 14, &be_const_str_ctypes_bytes_dyn); -be_define_const_str(consume_mono, "consume_mono", 3577563453u, 0, 12, &be_const_str_get_option); -be_define_const_str(consume_silence, "consume_silence", 1445390925u, 0, 15, &be_const_str_https_X3A_X2F_X2Fraw_X2Egithubusercontent_X2Ecom_X2Ftasmota_X2Fautoconf_X2Fmain_X2F_X25s_manifest_X2Ejson); -be_define_const_str(consume_stereo, "consume_stereo", 1834661098u, 0, 14, &be_const_str_height_def); -be_define_const_str(contains, "contains", 1825239352u, 0, 8, NULL); -be_define_const_str(content_button, "content_button", 1956476087u, 0, 14, &be_const_str_push); -be_define_const_str(content_flush, "content_flush", 214922475u, 0, 13, NULL); -be_define_const_str(content_send, "content_send", 1673733649u, 0, 12, &be_const_str_iter); -be_define_const_str(content_send_style, "content_send_style", 1087907647u, 0, 18, NULL); -be_define_const_str(content_start, "content_start", 2937509069u, 0, 13, &be_const_str_digital_write); -be_define_const_str(content_stop, "content_stop", 658554751u, 0, 12, &be_const_str_h); +be_define_const_str(connect, "connect", 2866859257u, 0, 7, NULL); +be_define_const_str(connected, "connected", 1424938192u, 0, 9, &be_const_str_lv_wifi_arcs); +be_define_const_str(connection_error, "connection_error", 1358926260u, 0, 16, &be_const_str_get_cb_list); +be_define_const_str(constructor_cb, "constructor_cb", 2489105297u, 0, 14, &be_const_str_web_add_console_button); +be_define_const_str(consume_mono, "consume_mono", 3577563453u, 0, 12, NULL); +be_define_const_str(consume_silence, "consume_silence", 1445390925u, 0, 15, &be_const_str__X7Bs_X7DVBus_X20Voltage_X7Bm_X7D_X25_X2E3f_X20V_X7Be_X7D); +be_define_const_str(consume_stereo, "consume_stereo", 1834661098u, 0, 14, &be_const_str_ins_ramp); +be_define_const_str(contains, "contains", 1825239352u, 0, 8, &be_const_str_function); +be_define_const_str(content_button, "content_button", 1956476087u, 0, 14, &be_const_str_lv_coord_arr); +be_define_const_str(content_flush, "content_flush", 214922475u, 0, 13, &be_const_str_get_battery_chargin_status); +be_define_const_str(content_send, "content_send", 1673733649u, 0, 12, NULL); +be_define_const_str(content_send_style, "content_send_style", 1087907647u, 0, 18, &be_const_str_font_seg7); +be_define_const_str(content_start, "content_start", 2937509069u, 0, 13, &be_const_str_lvgl_event_dispatch); +be_define_const_str(content_stop, "content_stop", 658554751u, 0, 12, NULL); be_define_const_str(continue, "continue", 2977070660u, 59, 8, NULL); -be_define_const_str(coord_arr, "coord_arr", 4189963658u, 0, 9, &be_const_str_path); -be_define_const_str(copy, "copy", 3848464964u, 0, 4, &be_const_str_web_add_main_button); -be_define_const_str(cos, "cos", 4220379804u, 0, 3, NULL); -be_define_const_str(cosh, "cosh", 4099687964u, 0, 4, &be_const_str_global); -be_define_const_str(couldn_X27t_X20not_X20initialize_X20noepixelbus, "couldn't not initialize noepixelbus", 2536490812u, 0, 35, NULL); -be_define_const_str(count, "count", 967958004u, 0, 5, &be_const_str_isnan); -be_define_const_str(counters, "counters", 4095866864u, 0, 8, &be_const_str_yield); +be_define_const_str(coord_arr, "coord_arr", 4189963658u, 0, 9, NULL); +be_define_const_str(copy, "copy", 3848464964u, 0, 4, &be_const_str_reset_search); +be_define_const_str(cos, "cos", 4220379804u, 0, 3, &be_const_str_every_100ms); +be_define_const_str(cosh, "cosh", 4099687964u, 0, 4, &be_const_str_keys); +be_define_const_str(couldn_X27t_X20not_X20initialize_X20noepixelbus, "couldn't not initialize noepixelbus", 2536490812u, 0, 35, &be_const_str_read13); +be_define_const_str(count, "count", 967958004u, 0, 5, &be_const_str_gen_cb); +be_define_const_str(counters, "counters", 4095866864u, 0, 8, NULL); be_define_const_str(create_custom_widget, "create_custom_widget", 1140594778u, 0, 20, NULL); -be_define_const_str(create_matrix, "create_matrix", 3528185923u, 0, 13, &be_const_str_select); -be_define_const_str(create_segment, "create_segment", 3863522719u, 0, 14, &be_const_str_hour); -be_define_const_str(ctor, "ctor", 375399343u, 0, 4, &be_const_str_json_fdump_map); -be_define_const_str(ctypes_bytes, "ctypes_bytes", 3879019703u, 0, 12, &be_const_str_widget_struct_default); -be_define_const_str(ctypes_bytes_dyn, "ctypes_bytes_dyn", 915205307u, 0, 16, NULL); -be_define_const_str(dac_voltage, "dac_voltage", 1552257222u, 0, 11, &be_const_str_font_montserrat); -be_define_const_str(day, "day", 3830391293u, 0, 3, &be_const_str_wifi_bars); -be_define_const_str(debug, "debug", 1483009432u, 0, 5, &be_const_str_tasmota); -be_define_const_str(decode, "decode", 3007678287u, 0, 6, &be_const_str_event_cb); -be_define_const_str(decompress, "decompress", 2887031650u, 0, 10, &be_const_str_lower); -be_define_const_str(decrypt, "decrypt", 2886974618u, 0, 7, &be_const_str_get_switch); +be_define_const_str(create_matrix, "create_matrix", 3528185923u, 0, 13, &be_const_str_round_start); +be_define_const_str(create_segment, "create_segment", 3863522719u, 0, 14, &be_const_str_ctor); +be_define_const_str(ctor, "ctor", 375399343u, 0, 4, &be_const_str_set_rate); +be_define_const_str(ctypes_bytes, "ctypes_bytes", 3879019703u, 0, 12, &be_const_str_gamma10); +be_define_const_str(ctypes_bytes_dyn, "ctypes_bytes_dyn", 915205307u, 0, 16, &be_const_str_elements_X20must_X20be_X20a_X20lv_point); +be_define_const_str(dac_voltage, "dac_voltage", 1552257222u, 0, 11, &be_const_str_seg7_font); +be_define_const_str(day, "day", 3830391293u, 0, 3, &be_const_str_lv_point_arr); +be_define_const_str(debug, "debug", 1483009432u, 0, 5, &be_const_str_readline); +be_define_const_str(decode, "decode", 3007678287u, 0, 6, NULL); +be_define_const_str(decompress, "decompress", 2887031650u, 0, 10, NULL); +be_define_const_str(decrypt, "decrypt", 2886974618u, 0, 7, &be_const_str_pin_mode); be_define_const_str(def, "def", 3310976652u, 55, 3, NULL); be_define_const_str(deg, "deg", 3327754271u, 0, 3, NULL); -be_define_const_str(deinit, "deinit", 2345559592u, 0, 6, &be_const_str_find); -be_define_const_str(delay, "delay", 1322381784u, 0, 5, &be_const_str_target); -be_define_const_str(delete_all_configs, "delete_all_configs", 2382067578u, 0, 18, NULL); -be_define_const_str(depower, "depower", 3563819571u, 0, 7, &be_const_str_floor); -be_define_const_str(deregister_obj, "deregister_obj", 3909966993u, 0, 14, &be_const_str_pixel_count); -be_define_const_str(destructor_cb, "destructor_cb", 1930283190u, 0, 13, &be_const_str_json_fdump); -be_define_const_str(detect, "detect", 8884370u, 0, 6, &be_const_str_lv_clock_icon); +be_define_const_str(deinit, "deinit", 2345559592u, 0, 6, &be_const_str_ins_time); +be_define_const_str(delay, "delay", 1322381784u, 0, 5, &be_const_str_web_add_management_button); +be_define_const_str(delete_all_configs, "delete_all_configs", 2382067578u, 0, 18, &be_const_str_event_cb); +be_define_const_str(depower, "depower", 3563819571u, 0, 7, NULL); +be_define_const_str(deregister_obj, "deregister_obj", 3909966993u, 0, 14, NULL); +be_define_const_str(destructor_cb, "destructor_cb", 1930283190u, 0, 13, &be_const_str_invalidate); +be_define_const_str(detect, "detect", 8884370u, 0, 6, &be_const_str_width); be_define_const_str(detected_X20on_X20bus, "detected on bus", 1432002650u, 0, 15, NULL); be_define_const_str(digital_read, "digital_read", 3585496928u, 0, 12, NULL); -be_define_const_str(digital_write, "digital_write", 3435877979u, 0, 13, &be_const_str_get_string); -be_define_const_str(dirty, "dirty", 2667581083u, 0, 5, &be_const_str_get_height); -be_define_const_str(display, "display", 1164572437u, 0, 7, NULL); -be_define_const_str(display_X2Eini, "display.ini", 2646174001u, 0, 11, NULL); +be_define_const_str(digital_write, "digital_write", 3435877979u, 0, 13, &be_const_str_register_button_encoder); +be_define_const_str(dimmer, "dimmer", 794270539u, 0, 6, NULL); +be_define_const_str(dirty, "dirty", 2667581083u, 0, 5, &be_const_str_signal_bars); +be_define_const_str(display, "display", 1164572437u, 0, 7, &be_const_str_super); +be_define_const_str(display_X2Eini, "display.ini", 2646174001u, 0, 11, &be_const_str_local); be_define_const_str(do, "do", 1646057492u, 65, 2, NULL); -be_define_const_str(draw_arc, "draw_arc", 1828251676u, 0, 8, &be_const_str_ip); -be_define_const_str(draw_line, "draw_line", 1634465686u, 0, 9, &be_const_str_io_error); -be_define_const_str(draw_line_dsc, "draw_line_dsc", 4220676203u, 0, 13, &be_const_str_energy_struct); -be_define_const_str(draw_line_dsc_init, "draw_line_dsc_init", 3866693646u, 0, 18, &be_const_str_id); -be_define_const_str(due, "due", 3895530293u, 0, 3, NULL); -be_define_const_str(dump, "dump", 3663001223u, 0, 4, NULL); -be_define_const_str(duration, "duration", 799079693u, 0, 8, NULL); +be_define_const_str(draw_arc, "draw_arc", 1828251676u, 0, 8, &be_const_str_h); +be_define_const_str(draw_line, "draw_line", 1634465686u, 0, 9, &be_const_str_set_timer); +be_define_const_str(draw_line_dsc, "draw_line_dsc", 4220676203u, 0, 13, &be_const_str_global); +be_define_const_str(draw_line_dsc_init, "draw_line_dsc_init", 3866693646u, 0, 18, &be_const_str_get_bat_voltage); +be_define_const_str(due, "due", 3895530293u, 0, 3, &be_const_str_register_obj); +be_define_const_str(dump, "dump", 3663001223u, 0, 4, &be_const_str_listdir); +be_define_const_str(duration, "duration", 799079693u, 0, 8, &be_const_str_lv_event_cb); be_define_const_str(editable, "editable", 60532369u, 0, 8, NULL); -be_define_const_str(elements_X20must_X20be_X20a_X20lv_point, "elements must be a lv_point", 1415796524u, 0, 27, &be_const_str_get_alternate); +be_define_const_str(elements_X20must_X20be_X20a_X20lv_point, "elements must be a lv_point", 1415796524u, 0, 27, &be_const_str_run); be_define_const_str(elif, "elif", 3232090307u, 51, 4, NULL); be_define_const_str(else, "else", 3183434736u, 52, 4, NULL); -be_define_const_str(enabled, "enabled", 49525662u, 0, 7, &be_const_str_save); -be_define_const_str(encrypt, "encrypt", 2194327650u, 0, 7, NULL); -be_define_const_str(end, "end", 1787721130u, 56, 3, &be_const_str_import); -be_define_const_str(energy_struct, "energy_struct", 1655792843u, 0, 13, &be_const_str_gamma10); +be_define_const_str(enabled, "enabled", 49525662u, 0, 7, &be_const_str_percentage); +be_define_const_str(encrypt, "encrypt", 2194327650u, 0, 7, &be_const_str_read12); +be_define_const_str(end, "end", 1787721130u, 56, 3, NULL); +be_define_const_str(energy_struct, "energy_struct", 1655792843u, 0, 13, &be_const_str_last_modified); be_define_const_str(engine, "engine", 3993360443u, 0, 6, NULL); -be_define_const_str(erase, "erase", 1010949589u, 0, 5, &be_const_str_exec_cmd); +be_define_const_str(erase, "erase", 1010949589u, 0, 5, &be_const_str_tan); be_define_const_str(escape, "escape", 2652972038u, 0, 6, NULL); -be_define_const_str(eth, "eth", 2191266556u, 0, 3, &be_const_str_try); -be_define_const_str(event, "event", 4264611999u, 0, 5, &be_const_str_persist); -be_define_const_str(event_cb, "event_cb", 3128698017u, 0, 8, NULL); +be_define_const_str(eth, "eth", 2191266556u, 0, 3, NULL); +be_define_const_str(event, "event", 4264611999u, 0, 5, NULL); +be_define_const_str(event_cb, "event_cb", 3128698017u, 0, 8, &be_const_str_hs2rgb); be_define_const_str(event_send, "event_send", 598925582u, 0, 10, NULL); -be_define_const_str(every_100ms, "every_100ms", 1546407804u, 0, 11, &be_const_str_imin); -be_define_const_str(every_50ms, "every_50ms", 2383884008u, 0, 10, &be_const_str_get_pixel_color); -be_define_const_str(every_second, "every_second", 2075451465u, 0, 12, &be_const_str_list); +be_define_const_str(every_100ms, "every_100ms", 1546407804u, 0, 11, NULL); +be_define_const_str(every_50ms, "every_50ms", 2383884008u, 0, 10, NULL); +be_define_const_str(every_second, "every_second", 2075451465u, 0, 12, &be_const_str_resp_cmnd); be_define_const_str(except, "except", 950914032u, 69, 6, NULL); -be_define_const_str(exec_cmd, "exec_cmd", 493567399u, 0, 8, NULL); -be_define_const_str(exec_rules, "exec_rules", 1445221092u, 0, 10, &be_const_str_publish_result); -be_define_const_str(exec_tele, "exec_tele", 1020751601u, 0, 9, &be_const_str_set_y); -be_define_const_str(exists, "exists", 1002329533u, 0, 6, &be_const_str_get_bat_power); -be_define_const_str(exp, "exp", 1923516200u, 0, 3, &be_const_str_lv_wifi_bars_icon); -be_define_const_str(f, "f", 3809224601u, 0, 1, &be_const_str_lv_coord_arr); +be_define_const_str(exec_cmd, "exec_cmd", 493567399u, 0, 8, &be_const_str_unknown_X20instruction); +be_define_const_str(exec_rules, "exec_rules", 1445221092u, 0, 10, &be_const_str_skip); +be_define_const_str(exec_tele, "exec_tele", 1020751601u, 0, 9, NULL); +be_define_const_str(exists, "exists", 1002329533u, 0, 6, &be_const_str_set_style_line_color); +be_define_const_str(exp, "exp", 1923516200u, 0, 3, NULL); +be_define_const_str(f, "f", 3809224601u, 0, 1, &be_const_str_yield); be_define_const_str(false, "false", 184981848u, 62, 5, NULL); -be_define_const_str(fast_loop, "fast_loop", 3414422702u, 0, 9, &be_const_str_set_light); +be_define_const_str(fast_loop, "fast_loop", 3414422702u, 0, 9, &be_const_str_month); be_define_const_str(fast_loop_enabled, "fast_loop_enabled", 2567964376u, 0, 17, NULL); -be_define_const_str(file, "file", 2867484483u, 0, 4, NULL); -be_define_const_str(file_X20extension_X20is_X20not_X20_X27_X2Ebe_X27_X20or_X20_X27_X2Ebec_X27, "file extension is not '.be' or '.bec'", 3095719639u, 0, 37, &be_const_str_has_X20already_X20an_X20event_X20callback); -be_define_const_str(files, "files", 1055342736u, 0, 5, &be_const_str_web_add_management_button); -be_define_const_str(find, "find", 3186656602u, 0, 4, NULL); -be_define_const_str(find_key_i, "find_key_i", 850136726u, 0, 10, &be_const_str_insert); -be_define_const_str(find_op, "find_op", 3766713376u, 0, 7, NULL); -be_define_const_str(finish, "finish", 1494643858u, 0, 6, &be_const_str_top); -be_define_const_str(floor, "floor", 3102149661u, 0, 5, NULL); +be_define_const_str(file, "file", 2867484483u, 0, 4, &be_const_str_publish_result); +be_define_const_str(file_X20extension_X20is_X20not_X20_X27_X2Ebe_X27_X20or_X20_X27_X2Ebec_X27, "file extension is not '.be' or '.bec'", 3095719639u, 0, 37, NULL); +be_define_const_str(files, "files", 1055342736u, 0, 5, &be_const_str_wifi); +be_define_const_str(find, "find", 3186656602u, 0, 4, &be_const_str_string); +be_define_const_str(find_key_i, "find_key_i", 850136726u, 0, 10, NULL); +be_define_const_str(find_op, "find_op", 3766713376u, 0, 7, &be_const_str_resize); +be_define_const_str(finish, "finish", 1494643858u, 0, 6, NULL); +be_define_const_str(floor, "floor", 3102149661u, 0, 5, &be_const_str_get_power); be_define_const_str(flush, "flush", 3002334877u, 0, 5, NULL); -be_define_const_str(font_montserrat, "font_montserrat", 3790091262u, 0, 15, &be_const_str_write8); -be_define_const_str(font_seg7, "font_seg7", 1551771835u, 0, 9, &be_const_str_v); +be_define_const_str(font_montserrat, "font_montserrat", 3790091262u, 0, 15, NULL); +be_define_const_str(font_seg7, "font_seg7", 1551771835u, 0, 9, &be_const_str_class); be_define_const_str(for, "for", 2901640080u, 54, 3, NULL); -be_define_const_str(format, "format", 3114108242u, 0, 6, &be_const_str_setrange); -be_define_const_str(from_to, "from_to", 21625507u, 0, 7, NULL); -be_define_const_str(fromb64, "fromb64", 2717019639u, 0, 7, NULL); +be_define_const_str(format, "format", 3114108242u, 0, 6, NULL); +be_define_const_str(from_to, "from_to", 21625507u, 0, 7, &be_const_str_screenshot); +be_define_const_str(fromb64, "fromb64", 2717019639u, 0, 7, &be_const_str_get_object_from_ptr); be_define_const_str(fromptr, "fromptr", 666189689u, 0, 7, NULL); be_define_const_str(fromstring, "fromstring", 610302344u, 0, 10, NULL); -be_define_const_str(function, "function", 2664841801u, 0, 8, &be_const_str_member); +be_define_const_str(function, "function", 2664841801u, 0, 8, &be_const_str_tostring); be_define_const_str(gamma, "gamma", 3492353034u, 0, 5, NULL); -be_define_const_str(gamma10, "gamma10", 3472052483u, 0, 7, NULL); -be_define_const_str(gamma8, "gamma8", 3802843830u, 0, 6, &be_const_str_nil); -be_define_const_str(gc, "gc", 1042313471u, 0, 2, &be_const_str_stop_iteration); -be_define_const_str(gen_cb, "gen_cb", 3245227551u, 0, 6, &be_const_str_page_autoconf_mgr); -be_define_const_str(get, "get", 1410115415u, 0, 3, NULL); -be_define_const_str(get_alternate, "get_alternate", 1450148894u, 0, 13, &be_const_str_wifi_arcs); -be_define_const_str(get_aps_voltage, "get_aps_voltage", 2293036435u, 0, 15, NULL); -be_define_const_str(get_bat_charge_current, "get_bat_charge_current", 1385293050u, 0, 22, &be_const_str_introspect); -be_define_const_str(get_bat_current, "get_bat_current", 1912106073u, 0, 15, &be_const_str_rule); -be_define_const_str(get_bat_power, "get_bat_power", 3067374853u, 0, 13, &be_const_str_tcpclient); -be_define_const_str(get_bat_voltage, "get_bat_voltage", 706676538u, 0, 15, &be_const_str_invalidate); -be_define_const_str(get_battery_chargin_status, "get_battery_chargin_status", 2233241571u, 0, 26, &be_const_str_get_vbus_voltage); -be_define_const_str(get_bri, "get_bri", 2041809895u, 0, 7, &be_const_str_math); -be_define_const_str(get_cb_list, "get_cb_list", 1605319182u, 0, 11, &be_const_str_reapply); -be_define_const_str(get_coords, "get_coords", 1044089006u, 0, 10, &be_const_str_get_temp); -be_define_const_str(get_current_module_name, "get_current_module_name", 2379270740u, 0, 23, &be_const_str_public_key); -be_define_const_str(get_current_module_path, "get_current_module_path", 3206673408u, 0, 23, &be_const_str_web_add_button); -be_define_const_str(get_free_heap, "get_free_heap", 625069757u, 0, 13, &be_const_str_tasmota_X2Eget_light_X28_X29_X20is_X20deprecated_X2C_X20use_X20light_X2Eget_X28_X29); -be_define_const_str(get_height, "get_height", 3571755523u, 0, 10, NULL); -be_define_const_str(get_input_power_status, "get_input_power_status", 4102829177u, 0, 22, NULL); -be_define_const_str(get_light, "get_light", 381930476u, 0, 9, &be_const_str_run_deferred); -be_define_const_str(get_object_from_ptr, "get_object_from_ptr", 2345019201u, 0, 19, &be_const_str_get_style_bg_color); -be_define_const_str(get_option, "get_option", 2123730033u, 0, 10, NULL); -be_define_const_str(get_percentage, "get_percentage", 2880483992u, 0, 14, &be_const_str_int); -be_define_const_str(get_pixel_color, "get_pixel_color", 337490048u, 0, 15, &be_const_str_pop_path); -be_define_const_str(get_power, "get_power", 3009799377u, 0, 9, NULL); -be_define_const_str(get_size, "get_size", 2803644713u, 0, 8, &be_const_str_obj_event_base); -be_define_const_str(get_string, "get_string", 4195847969u, 0, 10, &be_const_str_the_X20second_X20argument_X20is_X20not_X20a_X20function); -be_define_const_str(get_style_bg_color, "get_style_bg_color", 964794381u, 0, 18, &be_const_str_get_warning_level); -be_define_const_str(get_style_line_color, "get_style_line_color", 805371932u, 0, 20, &be_const_str_pi); -be_define_const_str(get_style_pad_right, "get_style_pad_right", 3150287466u, 0, 19, &be_const_str_else); -be_define_const_str(get_switch, "get_switch", 164821028u, 0, 10, NULL); -be_define_const_str(get_temp, "get_temp", 3370919486u, 0, 8, NULL); +be_define_const_str(gamma10, "gamma10", 3472052483u, 0, 7, &be_const_str_tob64); +be_define_const_str(gamma8, "gamma8", 3802843830u, 0, 6, &be_const_str_page_autoconf_mgr); +be_define_const_str(gc, "gc", 1042313471u, 0, 2, &be_const_str_min); +be_define_const_str(gen_cb, "gen_cb", 3245227551u, 0, 6, &be_const_str_webclient); +be_define_const_str(get, "get", 1410115415u, 0, 3, &be_const_str_get_string); +be_define_const_str(get_alternate, "get_alternate", 1450148894u, 0, 13, &be_const_str_obj_event_base); +be_define_const_str(get_aps_voltage, "get_aps_voltage", 2293036435u, 0, 15, &be_const_str_strptime); +be_define_const_str(get_bat_charge_current, "get_bat_charge_current", 1385293050u, 0, 22, NULL); +be_define_const_str(get_bat_current, "get_bat_current", 1912106073u, 0, 15, NULL); +be_define_const_str(get_bat_power, "get_bat_power", 3067374853u, 0, 13, NULL); +be_define_const_str(get_bat_voltage, "get_bat_voltage", 706676538u, 0, 15, NULL); +be_define_const_str(get_battery_chargin_status, "get_battery_chargin_status", 2233241571u, 0, 26, &be_const_str_init); +be_define_const_str(get_bri, "get_bri", 2041809895u, 0, 7, &be_const_str_is_dirty); +be_define_const_str(get_cb_list, "get_cb_list", 1605319182u, 0, 11, NULL); +be_define_const_str(get_coords, "get_coords", 1044089006u, 0, 10, NULL); +be_define_const_str(get_current_module_name, "get_current_module_name", 2379270740u, 0, 23, NULL); +be_define_const_str(get_current_module_path, "get_current_module_path", 3206673408u, 0, 23, &be_const_str_log10); +be_define_const_str(get_free_heap, "get_free_heap", 625069757u, 0, 13, NULL); +be_define_const_str(get_height, "get_height", 3571755523u, 0, 10, &be_const_str_remove_cmd); +be_define_const_str(get_input_power_status, "get_input_power_status", 4102829177u, 0, 22, &be_const_str_pc); +be_define_const_str(get_light, "get_light", 381930476u, 0, 9, &be_const_str_get_temp); +be_define_const_str(get_object_from_ptr, "get_object_from_ptr", 2345019201u, 0, 19, &be_const_str_return_X20code_X3D_X25i); +be_define_const_str(get_option, "get_option", 2123730033u, 0, 10, &be_const_str_lv_wifi_bars); +be_define_const_str(get_percentage, "get_percentage", 2880483992u, 0, 14, &be_const_str_null_cb); +be_define_const_str(get_pixel_color, "get_pixel_color", 337490048u, 0, 15, &be_const_str_set_bits_per_sample); +be_define_const_str(get_power, "get_power", 3009799377u, 0, 9, &be_const_str_get_warning_level); +be_define_const_str(get_size, "get_size", 2803644713u, 0, 8, NULL); +be_define_const_str(get_string, "get_string", 4195847969u, 0, 10, NULL); +be_define_const_str(get_style_bg_color, "get_style_bg_color", 964794381u, 0, 18, NULL); +be_define_const_str(get_style_line_color, "get_style_line_color", 805371932u, 0, 20, &be_const_str_setrange); +be_define_const_str(get_style_pad_right, "get_style_pad_right", 3150287466u, 0, 19, &be_const_str_init_draw_line_dsc); +be_define_const_str(get_switch, "get_switch", 164821028u, 0, 10, &be_const_str_on); +be_define_const_str(get_temp, "get_temp", 3370919486u, 0, 8, &be_const_str_scale_uint); be_define_const_str(get_vbus_current, "get_vbus_current", 1205347942u, 0, 16, NULL); -be_define_const_str(get_vbus_voltage, "get_vbus_voltage", 2398210401u, 0, 16, NULL); -be_define_const_str(get_warning_level, "get_warning_level", 1737834441u, 0, 17, &be_const_str_true); -be_define_const_str(get_width, "get_width", 3293417300u, 0, 9, &be_const_str_quality); -be_define_const_str(getbits, "getbits", 3094168979u, 0, 7, &be_const_str_set_bri); -be_define_const_str(geti, "geti", 2381006490u, 0, 4, &be_const_str_log10); -be_define_const_str(global, "global", 503252654u, 0, 6, &be_const_str_udp); -be_define_const_str(gpio, "gpio", 2638155258u, 0, 4, &be_const_str_no_X20GPIO_X20specified_X20for_X20neopixelbus); -be_define_const_str(group_def, "group_def", 1524213328u, 0, 9, NULL); -be_define_const_str(h, "h", 3977000791u, 0, 1, NULL); -be_define_const_str(has, "has", 3988721635u, 0, 3, &be_const_str_lv_module_init); -be_define_const_str(has_X20already_X20an_X20event_X20callback, "has already an event callback", 2421565249u, 0, 29, NULL); -be_define_const_str(has_arg, "has_arg", 424878688u, 0, 7, &be_const_str_rad); -be_define_const_str(height_def, "height_def", 2348238838u, 0, 10, NULL); -be_define_const_str(hex, "hex", 4273249610u, 0, 3, &be_const_str_lv_solidified); -be_define_const_str(hour, "hour", 3053661199u, 0, 4, &be_const_str_traceback); -be_define_const_str(hs2rgb, "hs2rgb", 1040816349u, 0, 6, NULL); -be_define_const_str(https_X3A_X2F_X2Fraw_X2Egithubusercontent_X2Ecom_X2Ftasmota_X2Fautoconf_X2Fmain_X2F_X25s_X2F_X25s_X2Eautoconf, "https://raw.githubusercontent.com/tasmota/autoconf/main/%s/%s.autoconf", 2743526309u, 0, 70, &be_const_str_lv_wifi_arcs_icon); -be_define_const_str(https_X3A_X2F_X2Fraw_X2Egithubusercontent_X2Ecom_X2Ftasmota_X2Fautoconf_X2Fmain_X2F_X25s_manifest_X2Ejson, "https://raw.githubusercontent.com/tasmota/autoconf/main/%s_manifest.json", 3657552045u, 0, 72, &be_const_str_web_add_config_button); -be_define_const_str(i2c_enabled, "i2c_enabled", 218388101u, 0, 11, NULL); -be_define_const_str(id, "id", 926444256u, 0, 2, NULL); -be_define_const_str(if, "if", 959999494u, 50, 2, NULL); -be_define_const_str(imax, "imax", 3084515410u, 0, 4, &be_const_str_read32); -be_define_const_str(imin, "imin", 2714127864u, 0, 4, &be_const_str_members); +be_define_const_str(get_vbus_voltage, "get_vbus_voltage", 2398210401u, 0, 16, &be_const_str_web_send_decimal); +be_define_const_str(get_warning_level, "get_warning_level", 1737834441u, 0, 17, &be_const_str_lv_); +be_define_const_str(get_width, "get_width", 3293417300u, 0, 9, NULL); +be_define_const_str(getbits, "getbits", 3094168979u, 0, 7, NULL); +be_define_const_str(geti, "geti", 2381006490u, 0, 4, NULL); +be_define_const_str(global, "global", 503252654u, 0, 6, &be_const_str_length_X20in_X20bits_X20must_X20be_X20between_X200_X20and_X2032); +be_define_const_str(gpio, "gpio", 2638155258u, 0, 4, &be_const_str_strip); +be_define_const_str(group_def, "group_def", 1524213328u, 0, 9, &be_const_str_isinstance); +be_define_const_str(h, "h", 3977000791u, 0, 1, &be_const_str_reverse); +be_define_const_str(has, "has", 3988721635u, 0, 3, NULL); +be_define_const_str(has_X20already_X20an_X20event_X20callback, "has already an event callback", 2421565249u, 0, 29, &be_const_str_set_exten); +be_define_const_str(has_arg, "has_arg", 424878688u, 0, 7, &be_const_str_lower); +be_define_const_str(height_def, "height_def", 2348238838u, 0, 10, &be_const_str_tomap); +be_define_const_str(hex, "hex", 4273249610u, 0, 3, &be_const_str_internal_error); +be_define_const_str(hour, "hour", 3053661199u, 0, 4, &be_const_str_lv_module_init); +be_define_const_str(hs2rgb, "hs2rgb", 1040816349u, 0, 6, &be_const_str_obj_class_create_obj); +be_define_const_str(https_X3A_X2F_X2Fraw_X2Egithubusercontent_X2Ecom_X2Ftasmota_X2Fautoconf_X2Fmain_X2F_X25s_X2F_X25s_X2Eautoconf, "https://raw.githubusercontent.com/tasmota/autoconf/main/%s/%s.autoconf", 2743526309u, 0, 70, NULL); +be_define_const_str(https_X3A_X2F_X2Fraw_X2Egithubusercontent_X2Ecom_X2Ftasmota_X2Fautoconf_X2Fmain_X2F_X25s_manifest_X2Ejson, "https://raw.githubusercontent.com/tasmota/autoconf/main/%s_manifest.json", 3657552045u, 0, 72, &be_const_str_tele); +be_define_const_str(i2c_enabled, "i2c_enabled", 218388101u, 0, 11, &be_const_str_json_append); +be_define_const_str(id, "id", 926444256u, 0, 2, &be_const_str_print); +be_define_const_str(if, "if", 959999494u, 50, 2, &be_const_str_try); +be_define_const_str(imax, "imax", 3084515410u, 0, 4, &be_const_str_round_end); +be_define_const_str(imin, "imin", 2714127864u, 0, 4, &be_const_str_tolower); be_define_const_str(import, "import", 288002260u, 66, 6, NULL); -be_define_const_str(init, "init", 380752755u, 0, 4, &be_const_str_raise); -be_define_const_str(init_draw_line_dsc, "init_draw_line_dsc", 2507936040u, 0, 18, &be_const_str_widget_ctor_cb); -be_define_const_str(input, "input", 4191711099u, 0, 5, &be_const_str_read); -be_define_const_str(ins_goto, "ins_goto", 1342843963u, 0, 8, NULL); -be_define_const_str(ins_ramp, "ins_ramp", 1068049360u, 0, 8, &be_const_str_break); -be_define_const_str(ins_time, "ins_time", 2980245553u, 0, 8, NULL); -be_define_const_str(insert, "insert", 3332609576u, 0, 6, &be_const_str_lv_event_cb); -be_define_const_str(instance, "instance", 193386898u, 0, 8, NULL); -be_define_const_str(instance_X20required, "instance required", 381192159u, 0, 17, NULL); -be_define_const_str(instance_size, "instance_size", 4280269518u, 0, 13, &be_const_str_value); -be_define_const_str(int, "int", 2515107422u, 0, 3, NULL); -be_define_const_str(internal_error, "internal_error", 2519158169u, 0, 14, NULL); -be_define_const_str(introspect, "introspect", 164638290u, 0, 10, &be_const_str_k); +be_define_const_str(init, "init", 380752755u, 0, 4, NULL); +be_define_const_str(init_draw_line_dsc, "init_draw_line_dsc", 2507936040u, 0, 18, &be_const_str_true); +be_define_const_str(input, "input", 4191711099u, 0, 5, &be_const_str_pixel_count); +be_define_const_str(ins_goto, "ins_goto", 1342843963u, 0, 8, &be_const_str_set_pixel_color); +be_define_const_str(ins_ramp, "ins_ramp", 1068049360u, 0, 8, &be_const_str_widget_editable); +be_define_const_str(ins_time, "ins_time", 2980245553u, 0, 8, &be_const_str_is_running); +be_define_const_str(insert, "insert", 3332609576u, 0, 6, NULL); +be_define_const_str(instance, "instance", 193386898u, 0, 8, &be_const_str_member); +be_define_const_str(instance_X20required, "instance required", 381192159u, 0, 17, &be_const_str_rule); +be_define_const_str(instance_size, "instance_size", 4280269518u, 0, 13, &be_const_str_web_add_config_button); +be_define_const_str(int, "int", 2515107422u, 0, 3, &be_const_str_range); +be_define_const_str(internal_error, "internal_error", 2519158169u, 0, 14, &be_const_str_pop_path); +be_define_const_str(introspect, "introspect", 164638290u, 0, 10, &be_const_str_leds); be_define_const_str(invalidate, "invalidate", 2649734928u, 0, 10, NULL); -be_define_const_str(io_error, "io_error", 1970281036u, 0, 8, &be_const_str_rtc); +be_define_const_str(io_error, "io_error", 1970281036u, 0, 8, &be_const_str_tr); be_define_const_str(ip, "ip", 1261996636u, 0, 2, &be_const_str_readbytes); -be_define_const_str(is_dirty, "is_dirty", 418034110u, 0, 8, &be_const_str_wire_scan); -be_define_const_str(is_first_time, "is_first_time", 275242384u, 0, 13, NULL); -be_define_const_str(is_running, "is_running", 2226847261u, 0, 10, &be_const_str_reverse); -be_define_const_str(isinstance, "isinstance", 3669352738u, 0, 10, &be_const_str_wire2); -be_define_const_str(ismethod, "ismethod", 3513438880u, 0, 8, NULL); -be_define_const_str(isnan, "isnan", 2981347434u, 0, 5, &be_const_str_wifi_arcs_icon); -be_define_const_str(isrunning, "isrunning", 1688182268u, 0, 9, &be_const_str_length_X20in_X20bits_X20must_X20be_X20between_X200_X20and_X2032); -be_define_const_str(issubclass, "issubclass", 4078395519u, 0, 10, &be_const_str_loop); -be_define_const_str(item, "item", 2671260646u, 0, 4, &be_const_str_settings); -be_define_const_str(iter, "iter", 3124256359u, 0, 4, NULL); -be_define_const_str(json, "json", 916562499u, 0, 4, NULL); +be_define_const_str(is_dirty, "is_dirty", 418034110u, 0, 8, &be_const_str_real); +be_define_const_str(is_first_time, "is_first_time", 275242384u, 0, 13, &be_const_str_uuid4); +be_define_const_str(is_running, "is_running", 2226847261u, 0, 10, NULL); +be_define_const_str(isinstance, "isinstance", 3669352738u, 0, 10, &be_const_str_remove_driver); +be_define_const_str(ismethod, "ismethod", 3513438880u, 0, 8, &be_const_str_lv_obj); +be_define_const_str(isnan, "isnan", 2981347434u, 0, 5, &be_const_str_lv); +be_define_const_str(isrunning, "isrunning", 1688182268u, 0, 9, &be_const_str_sys); +be_define_const_str(issubclass, "issubclass", 4078395519u, 0, 10, NULL); +be_define_const_str(item, "item", 2671260646u, 0, 4, &be_const_str_wire); +be_define_const_str(iter, "iter", 3124256359u, 0, 4, &be_const_str_end); +be_define_const_str(json, "json", 916562499u, 0, 4, &be_const_str_pin_used); be_define_const_str(json_append, "json_append", 3002019284u, 0, 11, NULL); -be_define_const_str(json_fdump, "json_fdump", 1694216580u, 0, 10, NULL); -be_define_const_str(json_fdump_any, "json_fdump_any", 3348629385u, 0, 14, NULL); -be_define_const_str(json_fdump_list, "json_fdump_list", 3903879853u, 0, 15, &be_const_str_lv_wifi_arcs); -be_define_const_str(json_fdump_map, "json_fdump_map", 4091954653u, 0, 14, &be_const_str_load_templates); -be_define_const_str(k, "k", 3993778410u, 0, 1, &be_const_str_read12); +be_define_const_str(json_fdump, "json_fdump", 1694216580u, 0, 10, &be_const_str_remove); +be_define_const_str(json_fdump_any, "json_fdump_any", 3348629385u, 0, 14, &be_const_str_pc_rel); +be_define_const_str(json_fdump_list, "json_fdump_list", 3903879853u, 0, 15, NULL); +be_define_const_str(json_fdump_map, "json_fdump_map", 4091954653u, 0, 14, NULL); +be_define_const_str(k, "k", 3993778410u, 0, 1, &be_const_str_write_bit); be_define_const_str(keys, "keys", 4182378701u, 0, 4, NULL); -be_define_const_str(kv, "kv", 1497177492u, 0, 2, &be_const_str_reverse_gamma10); -be_define_const_str(last_modified, "last_modified", 772177145u, 0, 13, &be_const_str_min); -be_define_const_str(leds, "leds", 558858555u, 0, 4, &be_const_str_url_encode); -be_define_const_str(length_X20in_X20bits_X20must_X20be_X20between_X200_X20and_X2032, "length in bits must be between 0 and 32", 2584509128u, 0, 39, &be_const_str_lv_point_arr); -be_define_const_str(light, "light", 3801947695u, 0, 5, &be_const_str_tostring); -be_define_const_str(line_dsc, "line_dsc", 4094490978u, 0, 8, &be_const_str_sec); -be_define_const_str(list, "list", 217798785u, 0, 4, NULL); -be_define_const_str(list_handlers, "list_handlers", 593774371u, 0, 13, &be_const_str_widget_event_impl); +be_define_const_str(kv, "kv", 1497177492u, 0, 2, NULL); +be_define_const_str(last_modified, "last_modified", 772177145u, 0, 13, NULL); +be_define_const_str(leds, "leds", 558858555u, 0, 4, &be_const_str_resp_cmnd_failed); +be_define_const_str(length_X20in_X20bits_X20must_X20be_X20between_X200_X20and_X2032, "length in bits must be between 0 and 32", 2584509128u, 0, 39, NULL); +be_define_const_str(light, "light", 3801947695u, 0, 5, &be_const_str_zero); +be_define_const_str(line_dsc, "line_dsc", 4094490978u, 0, 8, NULL); +be_define_const_str(list, "list", 217798785u, 0, 4, &be_const_str_set_x); +be_define_const_str(list_handlers, "list_handlers", 593774371u, 0, 13, &be_const_str_as); be_define_const_str(listdir, "listdir", 2005220720u, 0, 7, NULL); -be_define_const_str(load, "load", 3859241449u, 0, 4, &be_const_str_lv_obj); -be_define_const_str(load_freetype_font, "load_freetype_font", 2368447592u, 0, 18, NULL); -be_define_const_str(load_templates, "load_templates", 3513870133u, 0, 14, &be_const_str_resp_cmnd_error); -be_define_const_str(local, "local", 2621662984u, 0, 5, NULL); -be_define_const_str(log, "log", 1062293841u, 0, 3, &be_const_str_set_ldo_enable); -be_define_const_str(log10, "log10", 2346846000u, 0, 5, &be_const_str__X7Bs_X7DVBus_X20Voltage_X7Bm_X7D_X25_X2E3f_X20V_X7Be_X7D); -be_define_const_str(loop, "loop", 3723446379u, 0, 4, &be_const_str_seg7_font); -be_define_const_str(lower, "lower", 3038577850u, 0, 5, &be_const_str_lv_point); -be_define_const_str(lv, "lv", 1529997255u, 0, 2, NULL); +be_define_const_str(load, "load", 3859241449u, 0, 4, &be_const_str_make_cb); +be_define_const_str(load_freetype_font, "load_freetype_font", 2368447592u, 0, 18, &be_const_str_read24); +be_define_const_str(load_templates, "load_templates", 3513870133u, 0, 14, NULL); +be_define_const_str(local, "local", 2621662984u, 0, 5, &be_const_str_import); +be_define_const_str(log, "log", 1062293841u, 0, 3, NULL); +be_define_const_str(log10, "log10", 2346846000u, 0, 5, NULL); +be_define_const_str(loop, "loop", 3723446379u, 0, 4, &be_const_str_redirect); +be_define_const_str(lower, "lower", 3038577850u, 0, 5, NULL); +be_define_const_str(lv, "lv", 1529997255u, 0, 2, &be_const_str_persist_X2E_p_X20is_X20not_X20a_X20map); be_define_const_str(lv_, "lv_", 663721032u, 0, 3, NULL); -be_define_const_str(lv_clock_icon, "lv_clock_icon", 3257216210u, 0, 13, &be_const_str_nan); +be_define_const_str(lv_clock_icon, "lv_clock_icon", 3257216210u, 0, 13, &be_const_str_zip); be_define_const_str(lv_coord_arr, "lv_coord_arr", 1197238601u, 0, 12, NULL); -be_define_const_str(lv_event, "lv_event", 2434089968u, 0, 8, &be_const_str_remove_rule); -be_define_const_str(lv_event_cb, "lv_event_cb", 2480731016u, 0, 11, NULL); +be_define_const_str(lv_event, "lv_event", 2434089968u, 0, 8, &be_const_str__X7Bs_X7DBatt_X20Current_X7Bm_X7D_X25_X2E1f_X20mA_X7Be_X7D); +be_define_const_str(lv_event_cb, "lv_event_cb", 2480731016u, 0, 11, &be_const_str_wire1); be_define_const_str(lv_extra, "lv_extra", 399561998u, 0, 8, NULL); be_define_const_str(lv_module_init, "lv_module_init", 1133027755u, 0, 14, NULL); be_define_const_str(lv_obj, "lv_obj", 4257833149u, 0, 6, NULL); -be_define_const_str(lv_obj_class, "lv_obj_class", 4039656294u, 0, 12, NULL); +be_define_const_str(lv_obj_class, "lv_obj_class", 4039656294u, 0, 12, &be_const_str_pixel_size); be_define_const_str(lv_point, "lv_point", 4120221790u, 0, 8, NULL); -be_define_const_str(lv_point_arr, "lv_point_arr", 3959768858u, 0, 12, NULL); +be_define_const_str(lv_point_arr, "lv_point_arr", 3959768858u, 0, 12, &be_const_str_onsubmit_X3D_X27return_X20confirm_X28_X22This_X20will_X20change_X20the_X20current_X20configuration_X20and_X20cause_X20a_X20restart_X2E_X22_X29_X3B_X27_X3E); be_define_const_str(lv_signal_arcs, "lv_signal_arcs", 2839156988u, 0, 14, NULL); -be_define_const_str(lv_signal_bars, "lv_signal_bars", 3513972559u, 0, 14, NULL); -be_define_const_str(lv_solidified, "lv_solidified", 2274121310u, 0, 13, &be_const_str_set_channels); -be_define_const_str(lv_wifi_arcs, "lv_wifi_arcs", 2082091963u, 0, 12, &be_const_str_read13); -be_define_const_str(lv_wifi_arcs_icon, "lv_wifi_arcs_icon", 1507982909u, 0, 17, &be_const_str_offseta); -be_define_const_str(lv_wifi_bars, "lv_wifi_bars", 2109539196u, 0, 12, &be_const_str_webclient); -be_define_const_str(lv_wifi_bars_icon, "lv_wifi_bars_icon", 2805815540u, 0, 17, &be_const_str_null_cb); -be_define_const_str(lvgl_event_dispatch, "lvgl_event_dispatch", 2104396622u, 0, 19, NULL); -be_define_const_str(make_cb, "make_cb", 71252785u, 0, 7, NULL); +be_define_const_str(lv_signal_bars, "lv_signal_bars", 3513972559u, 0, 14, &be_const_str_setmember); +be_define_const_str(lv_solidified, "lv_solidified", 2274121310u, 0, 13, &be_const_str_set_alternate); +be_define_const_str(lv_wifi_arcs, "lv_wifi_arcs", 2082091963u, 0, 12, NULL); +be_define_const_str(lv_wifi_arcs_icon, "lv_wifi_arcs_icon", 1507982909u, 0, 17, &be_const_str_push); +be_define_const_str(lv_wifi_bars, "lv_wifi_bars", 2109539196u, 0, 12, &be_const_str_signal_arcs); +be_define_const_str(lv_wifi_bars_icon, "lv_wifi_bars_icon", 2805815540u, 0, 17, &be_const_str_quality); +be_define_const_str(lvgl_event_dispatch, "lvgl_event_dispatch", 2104396622u, 0, 19, &be_const_str_nan); +be_define_const_str(make_cb, "make_cb", 71252785u, 0, 7, &be_const_str_widget_event_cb); be_define_const_str(map, "map", 3751997361u, 0, 3, NULL); be_define_const_str(math, "math", 4001929615u, 0, 4, NULL); -be_define_const_str(matrix, "matrix", 365099244u, 0, 6, NULL); -be_define_const_str(member, "member", 719708611u, 0, 6, NULL); -be_define_const_str(members, "members", 937576464u, 0, 7, NULL); -be_define_const_str(memory, "memory", 2229924270u, 0, 6, &be_const_str_running); -be_define_const_str(millis, "millis", 1214679063u, 0, 6, &be_const_str_read_bytes); -be_define_const_str(min, "min", 3381609815u, 0, 3, &be_const_str_widget_cb); -be_define_const_str(minute, "minute", 954666857u, 0, 6, &be_const_str_time_dump); -be_define_const_str(module, "module", 3617558685u, 0, 6, &be_const_str_x); -be_define_const_str(month, "month", 3598321157u, 0, 5, &be_const_str_out_X20of_X20range); -be_define_const_str(montserrat_font, "montserrat_font", 1819065874u, 0, 15, &be_const_str_round_start); -be_define_const_str(name, "name", 2369371622u, 0, 4, &be_const_str_web_add_handler); -be_define_const_str(nan, "nan", 797905850u, 0, 3, NULL); +be_define_const_str(matrix, "matrix", 365099244u, 0, 6, &be_const_str_reapply); +be_define_const_str(member, "member", 719708611u, 0, 6, &be_const_str_send); +be_define_const_str(members, "members", 937576464u, 0, 7, &be_const_str_sec); +be_define_const_str(memory, "memory", 2229924270u, 0, 6, &be_const_str_shared_key); +be_define_const_str(millis, "millis", 1214679063u, 0, 6, &be_const_str_target); +be_define_const_str(min, "min", 3381609815u, 0, 3, &be_const_str_set_channels); +be_define_const_str(minute, "minute", 954666857u, 0, 6, NULL); +be_define_const_str(module, "module", 3617558685u, 0, 6, NULL); +be_define_const_str(month, "month", 3598321157u, 0, 5, NULL); +be_define_const_str(montserrat_font, "montserrat_font", 1819065874u, 0, 15, &be_const_str_read32); +be_define_const_str(name, "name", 2369371622u, 0, 4, NULL); +be_define_const_str(nan, "nan", 797905850u, 0, 3, &be_const_str_set_pwm); be_define_const_str(nil, "nil", 228849900u, 63, 3, NULL); be_define_const_str(no_X20GPIO_X20specified_X20for_X20neopixelbus, "no GPIO specified for neopixelbus", 42078528u, 0, 33, NULL); -be_define_const_str(null_cb, "null_cb", 2333536460u, 0, 7, &be_const_str_set_first_time); -be_define_const_str(number, "number", 467038368u, 0, 6, &be_const_str_offset); -be_define_const_str(obj_class_create_obj, "obj_class_create_obj", 3304390632u, 0, 20, &be_const_str_tanh); +be_define_const_str(null_cb, "null_cb", 2333536460u, 0, 7, NULL); +be_define_const_str(number, "number", 467038368u, 0, 6, &be_const_str_read_sensors); +be_define_const_str(obj_class_create_obj, "obj_class_create_obj", 3304390632u, 0, 20, NULL); be_define_const_str(obj_event_base, "obj_event_base", 1624064363u, 0, 14, NULL); be_define_const_str(offset, "offset", 348705738u, 0, 6, NULL); -be_define_const_str(offseta, "offseta", 1663383089u, 0, 7, &be_const_str_set_style_bg_color); +be_define_const_str(offseta, "offseta", 1663383089u, 0, 7, NULL); be_define_const_str(on, "on", 1630810064u, 0, 2, NULL); -be_define_const_str(onsubmit_X3D_X27return_X20confirm_X28_X22This_X20will_X20cause_X20a_X20restart_X2E_X22_X29_X3B_X27_X3E, "onsubmit='return confirm(\"This will cause a restart.\");'>", 232646018u, 0, 57, &be_const_str_refr_size); -be_define_const_str(onsubmit_X3D_X27return_X20confirm_X28_X22This_X20will_X20change_X20the_X20current_X20configuration_X20and_X20cause_X20a_X20restart_X2E_X22_X29_X3B_X27_X3E, "onsubmit='return confirm(\"This will change the current configuration and cause a restart.\");'>", 3792412559u, 0, 94, NULL); -be_define_const_str(open, "open", 3546203337u, 0, 4, NULL); -be_define_const_str(out_X20of_X20range, "out of range", 2236631477u, 0, 12, NULL); -be_define_const_str(p1, "p1", 2689521274u, 0, 2, NULL); -be_define_const_str(p2, "p2", 2672743655u, 0, 2, &be_const_str_widget_group_def); -be_define_const_str(page_autoconf_ctl, "page_autoconf_ctl", 2453381496u, 0, 17, &be_const_str_resp_cmnd); -be_define_const_str(page_autoconf_mgr, "page_autoconf_mgr", 3643937031u, 0, 17, &be_const_str_r); -be_define_const_str(param, "param", 1309554226u, 0, 5, &be_const_str_show); +be_define_const_str(onsubmit_X3D_X27return_X20confirm_X28_X22This_X20will_X20cause_X20a_X20restart_X2E_X22_X29_X3B_X27_X3E, "onsubmit='return confirm(\"This will cause a restart.\");'>", 232646018u, 0, 57, &be_const_str_start); +be_define_const_str(onsubmit_X3D_X27return_X20confirm_X28_X22This_X20will_X20change_X20the_X20current_X20configuration_X20and_X20cause_X20a_X20restart_X2E_X22_X29_X3B_X27_X3E, "onsubmit='return confirm(\"This will change the current configuration and cause a restart.\");'>", 3792412559u, 0, 94, &be_const_str_pixels_buffer); +be_define_const_str(open, "open", 3546203337u, 0, 4, &be_const_str_rotate); +be_define_const_str(out_X20of_X20range, "out of range", 2236631477u, 0, 12, &be_const_str_time_reached); +be_define_const_str(p1, "p1", 2689521274u, 0, 2, &be_const_str_set_useragent); +be_define_const_str(p2, "p2", 2672743655u, 0, 2, NULL); +be_define_const_str(page_autoconf_ctl, "page_autoconf_ctl", 2453381496u, 0, 17, &be_const_str_push_path); +be_define_const_str(page_autoconf_mgr, "page_autoconf_mgr", 3643937031u, 0, 17, NULL); +be_define_const_str(param, "param", 1309554226u, 0, 5, NULL); be_define_const_str(path, "path", 2223459638u, 0, 4, NULL); -be_define_const_str(pc, "pc", 1313756516u, 0, 2, NULL); -be_define_const_str(pc_abs, "pc_abs", 920256495u, 0, 6, &be_const_str_resp_cmnd_done); +be_define_const_str(pc, "pc", 1313756516u, 0, 2, &be_const_str_refr_size); +be_define_const_str(pc_abs, "pc_abs", 920256495u, 0, 6, &be_const_str_except); be_define_const_str(pc_rel, "pc_rel", 991921176u, 0, 6, NULL); -be_define_const_str(percentage, "percentage", 2538831285u, 0, 10, NULL); -be_define_const_str(persist, "persist", 3917083779u, 0, 7, &be_const_str_set_height); -be_define_const_str(persist_X2E_p_X20is_X20not_X20a_X20map, "persist._p is not a map", 1176528732u, 0, 23, NULL); -be_define_const_str(pi, "pi", 1213090802u, 0, 2, &be_const_str_run); -be_define_const_str(pin, "pin", 1866532500u, 0, 3, &be_const_str_resp_cmnd_str); +be_define_const_str(percentage, "percentage", 2538831285u, 0, 10, &be_const_str_save); +be_define_const_str(persist, "persist", 3917083779u, 0, 7, &be_const_str_seti); +be_define_const_str(persist_X2E_p_X20is_X20not_X20a_X20map, "persist._p is not a map", 1176528732u, 0, 23, &be_const_str_set_ldo_enable); +be_define_const_str(pi, "pi", 1213090802u, 0, 2, &be_const_str_set_text); +be_define_const_str(pin, "pin", 1866532500u, 0, 3, &be_const_str_pop); be_define_const_str(pin_mode, "pin_mode", 3258314030u, 0, 8, NULL); -be_define_const_str(pin_used, "pin_used", 4033854612u, 0, 8, NULL); +be_define_const_str(pin_used, "pin_used", 4033854612u, 0, 8, &be_const_str_write_bytes); be_define_const_str(pixel_count, "pixel_count", 2439130743u, 0, 11, NULL); -be_define_const_str(pixel_size, "pixel_size", 2209135785u, 0, 10, &be_const_str_resolvecmnd); -be_define_const_str(pixels_buffer, "pixels_buffer", 1229555807u, 0, 13, &be_const_str_return); -be_define_const_str(point, "point", 414084241u, 0, 5, &be_const_str_real); +be_define_const_str(pixel_size, "pixel_size", 2209135785u, 0, 10, NULL); +be_define_const_str(pixels_buffer, "pixels_buffer", 1229555807u, 0, 13, NULL); +be_define_const_str(point, "point", 414084241u, 0, 5, NULL); be_define_const_str(point_arr, "point_arr", 1140859857u, 0, 9, NULL); -be_define_const_str(pop, "pop", 1362321360u, 0, 3, &be_const_str_set_auth); -be_define_const_str(pop_path, "pop_path", 2403243998u, 0, 8, NULL); -be_define_const_str(pow, "pow", 1479764693u, 0, 3, NULL); +be_define_const_str(pop, "pop", 1362321360u, 0, 3, NULL); +be_define_const_str(pop_path, "pop_path", 2403243998u, 0, 8, &be_const_str_run_bat); +be_define_const_str(pow, "pow", 1479764693u, 0, 3, &be_const_str_widget_group_def); be_define_const_str(preinit, "preinit", 2722007100u, 0, 7, NULL); -be_define_const_str(print, "print", 372738696u, 0, 5, NULL); -be_define_const_str(public_key, "public_key", 4169142980u, 0, 10, &be_const_str_tob64); +be_define_const_str(print, "print", 372738696u, 0, 5, &be_const_str_response_append); +be_define_const_str(public_key, "public_key", 4169142980u, 0, 10, &be_const_str__X7B); be_define_const_str(publish, "publish", 264247304u, 0, 7, NULL); -be_define_const_str(publish_result, "publish_result", 2013351252u, 0, 14, &be_const_str_except); -be_define_const_str(push, "push", 2272264157u, 0, 4, NULL); -be_define_const_str(push_path, "push_path", 1155254157u, 0, 9, NULL); -be_define_const_str(quality, "quality", 2597670950u, 0, 7, &be_const_str_register_obj); -be_define_const_str(r, "r", 4144776981u, 0, 1, &be_const_str_response_append); -be_define_const_str(rad, "rad", 1358899048u, 0, 3, &be_const_str_set_rate); +be_define_const_str(publish_result, "publish_result", 2013351252u, 0, 14, NULL); +be_define_const_str(push, "push", 2272264157u, 0, 4, &be_const_str_stop); +be_define_const_str(push_path, "push_path", 1155254157u, 0, 9, &be_const_str_size); +be_define_const_str(quality, "quality", 2597670950u, 0, 7, &be_const_str_widget_constructor); +be_define_const_str(r, "r", 4144776981u, 0, 1, &be_const_str_webserver); +be_define_const_str(rad, "rad", 1358899048u, 0, 3, &be_const_str_x1); be_define_const_str(raise, "raise", 1593437475u, 70, 5, NULL); -be_define_const_str(rand, "rand", 2711325910u, 0, 4, NULL); -be_define_const_str(range, "range", 4208725202u, 0, 5, &be_const_str_time_str); -be_define_const_str(read, "read", 3470762949u, 0, 4, NULL); +be_define_const_str(rand, "rand", 2711325910u, 0, 4, &be_const_str_widget_ctor_impl); +be_define_const_str(range, "range", 4208725202u, 0, 5, &be_const_str_set_first_time); +be_define_const_str(read, "read", 3470762949u, 0, 4, &be_const_str_set_dc_voltage); be_define_const_str(read12, "read12", 4291076970u, 0, 6, &be_const_str_widget_dtor_impl); -be_define_const_str(read13, "read13", 12887293u, 0, 6, &be_const_str_target_search); -be_define_const_str(read24, "read24", 1808533811u, 0, 6, NULL); -be_define_const_str(read32, "read32", 1741276240u, 0, 6, &be_const_str_send_multicast); -be_define_const_str(read8, "read8", 2802788167u, 0, 5, &be_const_str_remote_port); -be_define_const_str(read_bytes, "read_bytes", 3576733173u, 0, 10, &be_const_str_type); -be_define_const_str(read_sensors, "read_sensors", 892689201u, 0, 12, &be_const_str_strftime); -be_define_const_str(readbytes, "readbytes", 2716426756u, 0, 9, NULL); -be_define_const_str(readline, "readline", 1212709927u, 0, 8, NULL); -be_define_const_str(real, "real", 3604983901u, 0, 4, NULL); -be_define_const_str(reapply, "reapply", 3778939332u, 0, 7, &be_const_str_resp_cmnd_failed); -be_define_const_str(redirect, "redirect", 389758641u, 0, 8, NULL); -be_define_const_str(refr_size, "refr_size", 1958144468u, 0, 9, &be_const_str_run_bat); -be_define_const_str(register_button_encoder, "register_button_encoder", 2811301550u, 0, 23, &be_const_str_set_ldo_voltage); +be_define_const_str(read13, "read13", 12887293u, 0, 6, NULL); +be_define_const_str(read24, "read24", 1808533811u, 0, 6, &be_const_str_set_percentage); +be_define_const_str(read32, "read32", 1741276240u, 0, 6, &be_const_str_set_timeouts); +be_define_const_str(read8, "read8", 2802788167u, 0, 5, &be_const_str_tcpclient); +be_define_const_str(read_bytes, "read_bytes", 3576733173u, 0, 10, NULL); +be_define_const_str(read_sensors, "read_sensors", 892689201u, 0, 12, NULL); +be_define_const_str(readbytes, "readbytes", 2716426756u, 0, 9, &be_const_str_set_dcdc_enable); +be_define_const_str(readline, "readline", 1212709927u, 0, 8, &be_const_str_year); +be_define_const_str(real, "real", 3604983901u, 0, 4, &be_const_str_y); +be_define_const_str(reapply, "reapply", 3778939332u, 0, 7, NULL); +be_define_const_str(redirect, "redirect", 389758641u, 0, 8, &be_const_str_type_error); +be_define_const_str(refr_size, "refr_size", 1958144468u, 0, 9, &be_const_str_set_ldo_voltage); +be_define_const_str(register_button_encoder, "register_button_encoder", 2811301550u, 0, 23, &be_const_str_sqrt); be_define_const_str(register_obj, "register_obj", 3982614770u, 0, 12, NULL); -be_define_const_str(remote_ip, "remote_ip", 2953154693u, 0, 9, &be_const_str_srand); -be_define_const_str(remote_port, "remote_port", 2163585967u, 0, 11, &be_const_str_wifi_bars_icon); +be_define_const_str(remote_ip, "remote_ip", 2953154693u, 0, 9, NULL); +be_define_const_str(remote_port, "remote_port", 2163585967u, 0, 11, &be_const_str_wire2); be_define_const_str(remove, "remove", 3683784189u, 0, 6, NULL); be_define_const_str(remove_cmd, "remove_cmd", 3832315702u, 0, 10, NULL); -be_define_const_str(remove_driver, "remove_driver", 1030243768u, 0, 13, NULL); -be_define_const_str(remove_rule, "remove_rule", 3456211328u, 0, 11, NULL); -be_define_const_str(remove_timer, "remove_timer", 4141472215u, 0, 12, NULL); -be_define_const_str(reset, "reset", 1695364032u, 0, 5, &be_const_str_set_x); -be_define_const_str(reset_search, "reset_search", 1350414305u, 0, 12, &be_const_str_widget_dtor_cb); +be_define_const_str(remove_driver, "remove_driver", 1030243768u, 0, 13, &be_const_str_setbits); +be_define_const_str(remove_rule, "remove_rule", 3456211328u, 0, 11, &be_const_str_write); +be_define_const_str(remove_timer, "remove_timer", 4141472215u, 0, 12, &be_const_str_while); +be_define_const_str(reset, "reset", 1695364032u, 0, 5, &be_const_str_widget_height_def); +be_define_const_str(reset_search, "reset_search", 1350414305u, 0, 12, &be_const_str_stop_iteration); be_define_const_str(resize, "resize", 3514612129u, 0, 6, NULL); -be_define_const_str(resolvecmnd, "resolvecmnd", 993361485u, 0, 11, NULL); +be_define_const_str(resolvecmnd, "resolvecmnd", 993361485u, 0, 11, &be_const_str_set_auth); be_define_const_str(resp_cmnd, "resp_cmnd", 2869459626u, 0, 9, NULL); be_define_const_str(resp_cmnd_done, "resp_cmnd_done", 2601874875u, 0, 14, NULL); be_define_const_str(resp_cmnd_error, "resp_cmnd_error", 2404088863u, 0, 15, NULL); -be_define_const_str(resp_cmnd_failed, "resp_cmnd_failed", 2136281562u, 0, 16, &be_const_str_rotate); -be_define_const_str(resp_cmnd_str, "resp_cmnd_str", 737845590u, 0, 13, &be_const_str_state); -be_define_const_str(response_append, "response_append", 450346371u, 0, 15, &be_const_str_return_X20code_X3D_X25i); +be_define_const_str(resp_cmnd_failed, "resp_cmnd_failed", 2136281562u, 0, 16, NULL); +be_define_const_str(resp_cmnd_str, "resp_cmnd_str", 737845590u, 0, 13, NULL); +be_define_const_str(response_append, "response_append", 450346371u, 0, 15, NULL); be_define_const_str(return, "return", 2246981567u, 60, 6, NULL); -be_define_const_str(return_X20code_X3D_X25i, "return code=%i", 2127454401u, 0, 14, NULL); -be_define_const_str(reverse, "reverse", 558918661u, 0, 7, &be_const_str_screenshot); +be_define_const_str(return_X20code_X3D_X25i, "return code=%i", 2127454401u, 0, 14, &be_const_str_def); +be_define_const_str(reverse, "reverse", 558918661u, 0, 7, &be_const_str_wd); be_define_const_str(reverse_gamma10, "reverse_gamma10", 739112262u, 0, 15, NULL); -be_define_const_str(rotate, "rotate", 2784296202u, 0, 6, &be_const_str_widget_width_def); +be_define_const_str(rotate, "rotate", 2784296202u, 0, 6, &be_const_str_write8); be_define_const_str(round_end, "round_end", 985288225u, 0, 9, NULL); -be_define_const_str(round_start, "round_start", 2949484384u, 0, 11, &be_const_str_widget_event_cb); -be_define_const_str(rtc, "rtc", 1070575216u, 0, 3, &be_const_str_set_style_line_color); +be_define_const_str(round_start, "round_start", 2949484384u, 0, 11, NULL); +be_define_const_str(rtc, "rtc", 1070575216u, 0, 3, NULL); be_define_const_str(rule, "rule", 4230889683u, 0, 4, NULL); -be_define_const_str(run, "run", 718098122u, 0, 3, &be_const_str_do); +be_define_const_str(run, "run", 718098122u, 0, 3, &be_const_str_set_style_pad_right); be_define_const_str(run_bat, "run_bat", 2536903298u, 0, 7, NULL); be_define_const_str(run_deferred, "run_deferred", 371594696u, 0, 12, NULL); -be_define_const_str(running, "running", 343848780u, 0, 7, NULL); +be_define_const_str(running, "running", 343848780u, 0, 7, &be_const_str_tanh); be_define_const_str(save, "save", 3439296072u, 0, 4, NULL); -be_define_const_str(save_before_restart, "save_before_restart", 1253239338u, 0, 19, NULL); -be_define_const_str(scale_uint, "scale_uint", 3090811094u, 0, 10, &be_const_str_write); -be_define_const_str(scan, "scan", 3974641896u, 0, 4, &be_const_str_set_dc_voltage); -be_define_const_str(screenshot, "screenshot", 3894592561u, 0, 10, &be_const_str_setmember); -be_define_const_str(search, "search", 2150836393u, 0, 6, NULL); -be_define_const_str(sec, "sec", 3139892658u, 0, 3, NULL); -be_define_const_str(seg7_font, "seg7_font", 4099690689u, 0, 9, NULL); +be_define_const_str(save_before_restart, "save_before_restart", 1253239338u, 0, 19, &be_const_str_x); +be_define_const_str(scale_uint, "scale_uint", 3090811094u, 0, 10, NULL); +be_define_const_str(scan, "scan", 3974641896u, 0, 4, &be_const_str_web_add_button); +be_define_const_str(screenshot, "screenshot", 3894592561u, 0, 10, NULL); +be_define_const_str(search, "search", 2150836393u, 0, 6, &be_const_str_top); +be_define_const_str(sec, "sec", 3139892658u, 0, 3, &be_const_str_toptr); +be_define_const_str(seg7_font, "seg7_font", 4099690689u, 0, 9, &be_const_str_serial); be_define_const_str(select, "select", 297952813u, 0, 6, NULL); be_define_const_str(send, "send", 1919010991u, 0, 4, NULL); be_define_const_str(send_multicast, "send_multicast", 812185870u, 0, 14, NULL); be_define_const_str(serial, "serial", 3687697785u, 0, 6, NULL); be_define_const_str(set, "set", 3324446467u, 0, 3, NULL); -be_define_const_str(set_alternate, "set_alternate", 1709680562u, 0, 13, &be_const_str_set_pwm); +be_define_const_str(set_alternate, "set_alternate", 1709680562u, 0, 13, NULL); be_define_const_str(set_auth, "set_auth", 1057170930u, 0, 8, NULL); be_define_const_str(set_bits_per_sample, "set_bits_per_sample", 3747657551u, 0, 19, NULL); -be_define_const_str(set_bri, "set_bri", 2789118779u, 0, 7, NULL); -be_define_const_str(set_channels, "set_channels", 1370190620u, 0, 12, NULL); -be_define_const_str(set_chg_current, "set_chg_current", 336304386u, 0, 15, NULL); +be_define_const_str(set_bri, "set_bri", 2789118779u, 0, 7, &be_const_str_return); +be_define_const_str(set_channels, "set_channels", 1370190620u, 0, 12, &be_const_str_setitem); +be_define_const_str(set_chg_current, "set_chg_current", 336304386u, 0, 15, &be_const_str_set_power); be_define_const_str(set_dc_voltage, "set_dc_voltage", 2181981936u, 0, 14, NULL); -be_define_const_str(set_dcdc_enable, "set_dcdc_enable", 1594690786u, 0, 15, &be_const_str_widget_event); -be_define_const_str(set_first_time, "set_first_time", 3111247550u, 0, 14, &be_const_str__X7D); -be_define_const_str(set_gain, "set_gain", 3847781975u, 0, 8, &be_const_str_set_text); +be_define_const_str(set_dcdc_enable, "set_dcdc_enable", 1594690786u, 0, 15, &be_const_str__X7B_X7D); +be_define_const_str(set_exten, "set_exten", 1721782768u, 0, 9, NULL); +be_define_const_str(set_first_time, "set_first_time", 3111247550u, 0, 14, &be_const_str_widget_struct_default); +be_define_const_str(set_gain, "set_gain", 3847781975u, 0, 8, NULL); be_define_const_str(set_height, "set_height", 1080207399u, 0, 10, NULL); be_define_const_str(set_ldo_enable, "set_ldo_enable", 2916502041u, 0, 14, NULL); -be_define_const_str(set_ldo_voltage, "set_ldo_voltage", 4090501160u, 0, 15, &be_const_str_set_width); -be_define_const_str(set_light, "set_light", 3176076152u, 0, 9, &be_const_str_set_matrix_pixel_color); +be_define_const_str(set_ldo_voltage, "set_ldo_voltage", 4090501160u, 0, 15, NULL); +be_define_const_str(set_light, "set_light", 3176076152u, 0, 9, NULL); be_define_const_str(set_matrix_pixel_color, "set_matrix_pixel_color", 1197149462u, 0, 22, NULL); -be_define_const_str(set_percentage, "set_percentage", 2952022724u, 0, 14, &be_const_str_sys); -be_define_const_str(set_pixel_color, "set_pixel_color", 1275248356u, 0, 15, &be_const_str_tomap); +be_define_const_str(set_percentage, "set_percentage", 2952022724u, 0, 14, NULL); +be_define_const_str(set_pixel_color, "set_pixel_color", 1275248356u, 0, 15, &be_const_str_update); be_define_const_str(set_power, "set_power", 549820893u, 0, 9, NULL); -be_define_const_str(set_pwm, "set_pwm", 3781811012u, 0, 7, NULL); -be_define_const_str(set_rate, "set_rate", 1154016838u, 0, 8, &be_const_str_web_send); -be_define_const_str(set_style_bg_color, "set_style_bg_color", 1689513089u, 0, 18, &be_const_str_sqrt); +be_define_const_str(set_pwm, "set_pwm", 3781811012u, 0, 7, &be_const_str_srand); +be_define_const_str(set_rate, "set_rate", 1154016838u, 0, 8, NULL); +be_define_const_str(set_style_bg_color, "set_style_bg_color", 1689513089u, 0, 18, NULL); be_define_const_str(set_style_line_color, "set_style_line_color", 3665238976u, 0, 20, NULL); be_define_const_str(set_style_pad_right, "set_style_pad_right", 3314069054u, 0, 19, NULL); -be_define_const_str(set_style_text_font, "set_style_text_font", 1028590019u, 0, 19, &be_const_str_tag); +be_define_const_str(set_style_text_font, "set_style_text_font", 1028590019u, 0, 19, NULL); be_define_const_str(set_text, "set_text", 1849641155u, 0, 8, NULL); be_define_const_str(set_time, "set_time", 900236405u, 0, 8, NULL); be_define_const_str(set_timeouts, "set_timeouts", 3732850900u, 0, 12, NULL); be_define_const_str(set_timer, "set_timer", 2135414533u, 0, 9, NULL); be_define_const_str(set_useragent, "set_useragent", 612237244u, 0, 13, NULL); -be_define_const_str(set_width, "set_width", 484671920u, 0, 9, &be_const_str_continue); +be_define_const_str(set_width, "set_width", 484671920u, 0, 9, NULL); be_define_const_str(set_x, "set_x", 1849400772u, 0, 5, NULL); be_define_const_str(set_y, "set_y", 1866178391u, 0, 5, NULL); be_define_const_str(setbits, "setbits", 2762408167u, 0, 7, NULL); -be_define_const_str(seti, "seti", 1500556254u, 0, 4, &be_const_str_shared_key); +be_define_const_str(seti, "seti", 1500556254u, 0, 4, NULL); be_define_const_str(setitem, "setitem", 1554834596u, 0, 7, NULL); -be_define_const_str(setmember, "setmember", 1432909441u, 0, 9, NULL); -be_define_const_str(setrange, "setrange", 3794019032u, 0, 8, &be_const_str_widget_struct_by_class); -be_define_const_str(settings, "settings", 1745255176u, 0, 8, &be_const_str_year); -be_define_const_str(shared_key, "shared_key", 2200833624u, 0, 10, NULL); +be_define_const_str(setmember, "setmember", 1432909441u, 0, 9, &be_const_str_write_file); +be_define_const_str(setrange, "setrange", 3794019032u, 0, 8, NULL); +be_define_const_str(settings, "settings", 1745255176u, 0, 8, NULL); +be_define_const_str(shared_key, "shared_key", 2200833624u, 0, 10, &be_const_str_upper); be_define_const_str(show, "show", 2840060476u, 0, 4, NULL); -be_define_const_str(signal_arcs, "signal_arcs", 1505996127u, 0, 11, &be_const_str_upper); +be_define_const_str(signal_arcs, "signal_arcs", 1505996127u, 0, 11, &be_const_str_split); be_define_const_str(signal_bars, "signal_bars", 3181573600u, 0, 11, NULL); -be_define_const_str(sin, "sin", 3761252941u, 0, 3, NULL); -be_define_const_str(sinh, "sinh", 282220607u, 0, 4, &be_const_str_stop); +be_define_const_str(sin, "sin", 3761252941u, 0, 3, &be_const_str_solidified); +be_define_const_str(sinh, "sinh", 282220607u, 0, 4, &be_const_str_tasmota_X2Eset_light_X28_X29_X20is_X20deprecated_X2C_X20use_X20light_X2Eset_X28_X29); be_define_const_str(size, "size", 597743964u, 0, 4, NULL); -be_define_const_str(skip, "skip", 1097563074u, 0, 4, &be_const_str_web_send_decimal); +be_define_const_str(skip, "skip", 1097563074u, 0, 4, NULL); be_define_const_str(solidified, "solidified", 3257553487u, 0, 10, NULL); be_define_const_str(split, "split", 2276994531u, 0, 5, NULL); be_define_const_str(sqrt, "sqrt", 2112764879u, 0, 4, NULL); -be_define_const_str(srand, "srand", 465518633u, 0, 5, &be_const_str_time_reached); -be_define_const_str(start, "start", 1697318111u, 0, 5, NULL); -be_define_const_str(state, "state", 2016490230u, 0, 5, &be_const_str_for); +be_define_const_str(srand, "srand", 465518633u, 0, 5, NULL); +be_define_const_str(start, "start", 1697318111u, 0, 5, &be_const_str_time_dump); +be_define_const_str(state, "state", 2016490230u, 0, 5, NULL); be_define_const_str(static, "static", 3532702267u, 71, 6, NULL); -be_define_const_str(stop, "stop", 3411225317u, 0, 4, NULL); -be_define_const_str(stop_iteration, "stop_iteration", 4173793901u, 0, 14, &be_const_str_tasmota_X2Eset_light_X28_X29_X20is_X20deprecated_X2C_X20use_X20light_X2Eset_X28_X29); +be_define_const_str(stop, "stop", 3411225317u, 0, 4, &be_const_str_try_rule); +be_define_const_str(stop_iteration, "stop_iteration", 4173793901u, 0, 14, NULL); be_define_const_str(str, "str", 3259748752u, 0, 3, NULL); be_define_const_str(strftime, "strftime", 187738851u, 0, 8, NULL); -be_define_const_str(string, "string", 398550328u, 0, 6, &be_const_str_wd); +be_define_const_str(string, "string", 398550328u, 0, 6, NULL); be_define_const_str(strip, "strip", 4246411473u, 0, 5, NULL); -be_define_const_str(strptime, "strptime", 1277910361u, 0, 8, &be_const_str__X7B_X7D); -be_define_const_str(super, "super", 4152230356u, 0, 5, NULL); -be_define_const_str(sys, "sys", 3277365014u, 0, 3, &be_const_str_widget_constructor); +be_define_const_str(strptime, "strptime", 1277910361u, 0, 8, &be_const_str_widget_event_impl); +be_define_const_str(super, "super", 4152230356u, 0, 5, &be_const_str_wire_scan); +be_define_const_str(sys, "sys", 3277365014u, 0, 3, NULL); be_define_const_str(tag, "tag", 2516003219u, 0, 3, NULL); be_define_const_str(tan, "tan", 2633446552u, 0, 3, NULL); -be_define_const_str(tanh, "tanh", 153638352u, 0, 4, NULL); -be_define_const_str(target, "target", 845187144u, 0, 6, &be_const_str_toptr); -be_define_const_str(target_search, "target_search", 1947846553u, 0, 13, NULL); +be_define_const_str(tanh, "tanh", 153638352u, 0, 4, &be_const_str_raise); +be_define_const_str(target, "target", 845187144u, 0, 6, NULL); +be_define_const_str(target_search, "target_search", 1947846553u, 0, 13, &be_const_str_valuer_error); be_define_const_str(tasmota, "tasmota", 424643812u, 0, 7, NULL); be_define_const_str(tasmota_X2Eget_light_X28_X29_X20is_X20deprecated_X2C_X20use_X20light_X2Eget_X28_X29, "tasmota.get_light() is deprecated, use light.get()", 3525753647u, 0, 50, NULL); be_define_const_str(tasmota_X2Eset_light_X28_X29_X20is_X20deprecated_X2C_X20use_X20light_X2Eset_X28_X29, "tasmota.set_light() is deprecated, use light.set()", 2124937871u, 0, 50, NULL); -be_define_const_str(tcpclient, "tcpclient", 3828797983u, 0, 9, NULL); +be_define_const_str(tcpclient, "tcpclient", 3828797983u, 0, 9, &be_const_str_web_send); be_define_const_str(tele, "tele", 3474458061u, 0, 4, NULL); -be_define_const_str(the_X20second_X20argument_X20is_X20not_X20a_X20function, "the second argument is not a function", 3954574469u, 0, 37, NULL); -be_define_const_str(time_dump, "time_dump", 3330410747u, 0, 9, NULL); +be_define_const_str(the_X20second_X20argument_X20is_X20not_X20a_X20function, "the second argument is not a function", 3954574469u, 0, 37, &be_const_str__X7D); +be_define_const_str(time_dump, "time_dump", 3330410747u, 0, 9, &be_const_str_w); be_define_const_str(time_reached, "time_reached", 2075136773u, 0, 12, NULL); -be_define_const_str(time_str, "time_str", 2613827612u, 0, 8, &be_const_str_web_sensor); +be_define_const_str(time_str, "time_str", 2613827612u, 0, 8, NULL); be_define_const_str(to_gamma, "to_gamma", 1597139862u, 0, 8, NULL); be_define_const_str(tob64, "tob64", 373777640u, 0, 5, NULL); be_define_const_str(tolower, "tolower", 1042520049u, 0, 7, NULL); be_define_const_str(tomap, "tomap", 612167626u, 0, 5, NULL); be_define_const_str(top, "top", 2802900028u, 0, 3, NULL); -be_define_const_str(toptr, "toptr", 3379847454u, 0, 5, &be_const_str_type_error); +be_define_const_str(toptr, "toptr", 3379847454u, 0, 5, NULL); be_define_const_str(tostring, "tostring", 2299708645u, 0, 8, NULL); be_define_const_str(toupper, "toupper", 3691983576u, 0, 7, NULL); be_define_const_str(tr, "tr", 1195724803u, 0, 2, NULL); @@ -726,12 +732,13 @@ be_define_const_str(true, "true", 1303515621u, 61, 4, NULL); be_define_const_str(try, "try", 2887626766u, 68, 3, NULL); be_define_const_str(try_rule, "try_rule", 1986449405u, 0, 8, NULL); be_define_const_str(type, "type", 1361572173u, 0, 4, NULL); -be_define_const_str(type_error, "type_error", 3789613824u, 0, 10, NULL); -be_define_const_str(udp, "udp", 1253872004u, 0, 3, NULL); -be_define_const_str(unknown_X20instruction, "unknown instruction", 1093911841u, 0, 19, NULL); -be_define_const_str(update, "update", 672109684u, 0, 6, &be_const_str_if); +be_define_const_str(type_error, "type_error", 3789613824u, 0, 10, &be_const_str_nil); +be_define_const_str(udp, "udp", 1253872004u, 0, 3, &be_const_str_wifi_bars); +be_define_const_str(unknown_X20instruction, "unknown instruction", 1093911841u, 0, 19, &be_const_str_break); +be_define_const_str(update, "update", 672109684u, 0, 6, NULL); be_define_const_str(upper, "upper", 176974407u, 0, 5, NULL); be_define_const_str(url_encode, "url_encode", 528392145u, 0, 10, NULL); +be_define_const_str(uuid4, "uuid4", 1153582450u, 0, 5, NULL); be_define_const_str(v, "v", 4077666505u, 0, 1, NULL); be_define_const_str(value, "value", 1113510858u, 0, 5, NULL); be_define_const_str(value_error, "value_error", 773297791u, 0, 11, NULL); @@ -739,26 +746,26 @@ be_define_const_str(valuer_error, "valuer_error", 2567947105u, 0, 12, NULL); be_define_const_str(var, "var", 2317739966u, 64, 3, NULL); be_define_const_str(w, "w", 4060888886u, 0, 1, NULL); be_define_const_str(wd, "wd", 1531424278u, 0, 2, NULL); -be_define_const_str(web_add_button, "web_add_button", 3537875058u, 0, 14, NULL); +be_define_const_str(web_add_button, "web_add_button", 3537875058u, 0, 14, &be_const_str_width_def); be_define_const_str(web_add_config_button, "web_add_config_button", 639674325u, 0, 21, NULL); be_define_const_str(web_add_console_button, "web_add_console_button", 3481436192u, 0, 22, NULL); -be_define_const_str(web_add_handler, "web_add_handler", 3990174962u, 0, 15, NULL); -be_define_const_str(web_add_main_button, "web_add_main_button", 3960367664u, 0, 19, NULL); +be_define_const_str(web_add_handler, "web_add_handler", 3990174962u, 0, 15, &be_const_str_widget_cb); +be_define_const_str(web_add_main_button, "web_add_main_button", 3960367664u, 0, 19, &be_const_str_continue); be_define_const_str(web_add_management_button, "web_add_management_button", 2738877186u, 0, 25, NULL); be_define_const_str(web_send, "web_send", 2989941448u, 0, 8, NULL); be_define_const_str(web_send_decimal, "web_send_decimal", 1407210204u, 0, 16, NULL); be_define_const_str(web_sensor, "web_sensor", 2900096972u, 0, 10, NULL); be_define_const_str(webclient, "webclient", 4076389146u, 0, 9, NULL); -be_define_const_str(webserver, "webserver", 1572454038u, 0, 9, &be_const_str_false); +be_define_const_str(webserver, "webserver", 1572454038u, 0, 9, NULL); be_define_const_str(while, "while", 231090382u, 53, 5, NULL); be_define_const_str(widget_cb, "widget_cb", 2763583055u, 0, 9, NULL); -be_define_const_str(widget_constructor, "widget_constructor", 2543785934u, 0, 18, &be_const_str__X7B); +be_define_const_str(widget_constructor, "widget_constructor", 2543785934u, 0, 18, NULL); be_define_const_str(widget_ctor_cb, "widget_ctor_cb", 876007560u, 0, 14, NULL); -be_define_const_str(widget_ctor_impl, "widget_ctor_impl", 194252479u, 0, 16, &be_const_str_write_file); +be_define_const_str(widget_ctor_impl, "widget_ctor_impl", 194252479u, 0, 16, NULL); be_define_const_str(widget_destructor, "widget_destructor", 4207388345u, 0, 17, NULL); -be_define_const_str(widget_dtor_cb, "widget_dtor_cb", 3151545845u, 0, 14, NULL); +be_define_const_str(widget_dtor_cb, "widget_dtor_cb", 3151545845u, 0, 14, &be_const_str_widget_struct_by_class); be_define_const_str(widget_dtor_impl, "widget_dtor_impl", 520430610u, 0, 16, NULL); -be_define_const_str(widget_editable, "widget_editable", 3821793286u, 0, 15, &be_const_str_y); +be_define_const_str(widget_editable, "widget_editable", 3821793286u, 0, 15, NULL); be_define_const_str(widget_event, "widget_event", 1951408186u, 0, 12, NULL); be_define_const_str(widget_event_cb, "widget_event_cb", 1508466754u, 0, 15, NULL); be_define_const_str(widget_event_impl, "widget_event_impl", 2178430561u, 0, 17, NULL); @@ -777,16 +784,16 @@ be_define_const_str(wifi_bars, "wifi_bars", 653141243u, 0, 9, NULL); be_define_const_str(wifi_bars_icon, "wifi_bars_icon", 3641522557u, 0, 14, NULL); be_define_const_str(wire, "wire", 4082753944u, 0, 4, NULL); be_define_const_str(wire1, "wire1", 3212721419u, 0, 5, NULL); -be_define_const_str(wire2, "wire2", 3229499038u, 0, 5, NULL); -be_define_const_str(wire_scan, "wire_scan", 2671275880u, 0, 9, &be_const_str_end); +be_define_const_str(wire2, "wire2", 3229499038u, 0, 5, &be_const_str_if); +be_define_const_str(wire_scan, "wire_scan", 2671275880u, 0, 9, NULL); be_define_const_str(write, "write", 3190202204u, 0, 5, NULL); -be_define_const_str(write8, "write8", 3133991532u, 0, 6, &be_const_str_def); +be_define_const_str(write8, "write8", 3133991532u, 0, 6, NULL); be_define_const_str(write_bit, "write_bit", 2660990436u, 0, 9, NULL); be_define_const_str(write_bytes, "write_bytes", 1227543792u, 0, 11, NULL); be_define_const_str(write_file, "write_file", 3177658879u, 0, 10, NULL); -be_define_const_str(write_gpio, "write_gpio", 2267940334u, 0, 10, &be_const_str_x1); +be_define_const_str(write_gpio, "write_gpio", 2267940334u, 0, 10, NULL); be_define_const_str(x, "x", 4245442695u, 0, 1, NULL); -be_define_const_str(x1, "x1", 274927234u, 0, 2, NULL); +be_define_const_str(x1, "x1", 274927234u, 0, 2, &be_const_str__X7Bs_X7DBatt_X20Voltage_X7Bm_X7D_X25_X2E3f_X20V_X7Be_X7D); be_define_const_str(y, "y", 4228665076u, 0, 1, NULL); be_define_const_str(y1, "y1", 2355101727u, 0, 2, NULL); be_define_const_str(year, "year", 2927578396u, 0, 4, NULL); @@ -800,403 +807,406 @@ be_define_const_str(_X7Bs_X7DTemp_X20AXP_X7Bm_X7D_X25_X2E1f_X20_X26deg_X3BC_X7Be be_define_const_str(_X7Bs_X7DVBus_X20Current_X7Bm_X7D_X25_X2E1f_X20mA_X7Be_X7D, "{s}VBus Current{m}%.1f mA{e}", 1032721155u, 0, 28, NULL); be_define_const_str(_X7Bs_X7DVBus_X20Voltage_X7Bm_X7D_X25_X2E3f_X20V_X7Be_X7D, "{s}VBus Voltage{m}%.3f V{e}", 165651270u, 0, 27, NULL); be_define_const_str(_X7B_X7D, "{}", 1415952421u, 0, 2, NULL); -be_define_const_str(_X7D, "}", 4161554600u, 0, 1, NULL); +be_define_const_str(_X7D, "}", 4161554600u, 0, 1, &be_const_str_do); static const bstring* const m_string_table[] = { - (const bstring *)&be_const_str_CFG_X3A_X20return_code_X3D_X25i, - (const bstring *)&be_const_str__available, - (const bstring *)&be_const_str_OneWire, + (const bstring *)&be_const_str_collect, + (const bstring *)&be_const_str_STATE_DEFAULT, + (const bstring *)&be_const_str_udp, + (const bstring *)&be_const_str__X3Clabel_X3EChoose_X20a_X20device_X20configuration_X3A_X3C_X2Flabel_X3E_X3Cbr_X3E, + (const bstring *)&be_const_str_math, + (const bstring *)&be_const_str_get_size, + (const bstring *)&be_const_str_close, + (const bstring *)&be_const_str_deinit, + (const bstring *)&be_const_str_AudioFileSourceFS, + (const bstring *)&be_const_str__X2F_X2Eautoconf, + (const bstring *)&be_const_str__def, + (const bstring *)&be_const_str__X21_X3D_X3D, + (const bstring *)&be_const_str_HTTP_POST, + (const bstring *)&be_const_str_b, + (const bstring *)&be_const_str_lv_signal_arcs, + (const bstring *)&be_const_str__X3E, + (const bstring *)&be_const_str__global_addr, + (const bstring *)&be_const_str__filename, + (const bstring *)&be_const_str__X23, + (const bstring *)&be_const_str_param, NULL, NULL, - (const bstring *)&be_const_str_try_rule, - (const bstring *)&be_const_str__X2Ep1, - (const bstring *)&be_const_str_compress, - (const bstring *)&be_const_str__buffer, - (const bstring *)&be_const_str_add_handler, - (const bstring *)&be_const_str_SERIAL_5N1, + (const bstring *)&be_const_str__X3Clegend_X3E_X3Cb_X20title_X3D_X27New_X20autoconf_X27_X3E_X26nbsp_X3BSelect_X20new_X20auto_X2Dconfiguration_X3C_X2Fb_X3E_X3C_X2Flegend_X3E, + (const bstring *)&be_const_str_digital_write, + (const bstring *)&be_const_str__X25s_X2Eautoconf, NULL, - (const bstring *)&be_const_str__X3Cp_X20style_X3D_X27width_X3A340px_X3B_X27_X3E_X3Cb_X3EException_X3A_X3C_X2Fb_X3E_X3Cbr_X3E_X27_X25s_X27_X3Cbr_X3E_X25s_X3C_X2Fp_X3E, - (const bstring *)&be_const_str_tr, - (const bstring *)&be_const_str_CFG_X3A_X20skipping_X20_X27display_X2Eini_X27_X20because_X20already_X20present_X20in_X20file_X2Dsystem, - (const bstring *)&be_const_str_pc_abs, - (const bstring *)&be_const_str__X23preinit_X2Ebe, (const bstring *)&be_const_str__X2F_X3Frst_X3D, - (const bstring *)&be_const_str__persist_X2Ejson, - (const bstring *)&be_const_str_arg_X20must_X20be_X20a_X20subclass_X20of_X20lv_obj, - (const bstring *)&be_const_str__X3Clegend_X3E_X3Cb_X20title_X3D_X27Autoconfiguration_X27_X3E_X26nbsp_X3BCurrent_X20auto_X2Dconfiguration_X3C_X2Fb_X3E_X3C_X2Flegend_X3E, + (const bstring *)&be_const_str_bri, + (const bstring *)&be_const_str_get_bat_power, + (const bstring *)&be_const_str_codedump, (const bstring *)&be_const_str_map, - (const bstring *)&be_const_str_atleast1, NULL, - (const bstring *)&be_const_str_RES_OK, + NULL, + NULL, + (const bstring *)&be_const_str_str, + (const bstring *)&be_const_str_counters, + (const bstring *)&be_const_str__ccmd, + (const bstring *)&be_const_str_WS2812_GRB, + (const bstring *)&be_const_str__X2D_X2D_X3A_X2D_X2D, + (const bstring *)&be_const_str_OpusDecoder, + (const bstring *)&be_const_str_, + (const bstring *)&be_const_str_draw_line_dsc, + (const bstring *)&be_const_str_line_dsc, + (const bstring *)&be_const_str_WS2812, + (const bstring *)&be_const_str_path, + (const bstring *)&be_const_str_to_gamma, + (const bstring *)&be_const_str_rand, + (const bstring *)&be_const_str_AES_GCM, + (const bstring *)&be_const_str_acos, + (const bstring *)&be_const_str_dirty, + (const bstring *)&be_const_str_gc, + (const bstring *)&be_const_str_draw_line_dsc_init, + (const bstring *)&be_const_str_SERIAL_7N1, + (const bstring *)&be_const_str_SERIAL_8O2, + NULL, (const bstring *)&be_const_str_SERIAL_5E1, (const bstring *)&be_const_str__X3Cp_X3E_X3C_X2Fp_X3E_X3C_X2Ffieldset_X3E_X3Cp_X3E_X3C_X2Fp_X3E, - (const bstring *)&be_const_str__X3D_X3C_X3E_X21, - NULL, - (const bstring *)&be_const_str_LVG_X3A_X20call_X20to_X20unsupported_X20callback, - (const bstring *)&be_const_str_destructor_cb, - (const bstring *)&be_const_str__X7Bs_X7DTemp_X20AXP_X7Bm_X7D_X25_X2E1f_X20_X26deg_X3BC_X7Be_X7D, - (const bstring *)&be_const_str_range, - (const bstring *)&be_const_str_get_bat_current, - (const bstring *)&be_const_str_class_init_obj, - NULL, - (const bstring *)&be_const_str_draw_line_dsc_init, - NULL, - (const bstring *)&be_const_str_AES_GCM, + (const bstring *)&be_const_str__X3Cp_X3E_X3Csmall_X3E_X26nbsp_X3B_X28This_X20feature_X20requires_X20an_X20internet_X20connection_X29_X3C_X2Fsmall_X3E_X3C_X2Fp_X3E, + (const bstring *)&be_const_str__X2Ebe, + (const bstring *)&be_const_str_lv_event, + (const bstring *)&be_const_str_concat, NULL, + (const bstring *)&be_const_str_fromptr, + (const bstring *)&be_const_str_open, + (const bstring *)&be_const_str_light, + (const bstring *)&be_const_str_OneWire, + (const bstring *)&be_const_str__X23init_X2Ebat, + (const bstring *)&be_const_str_sin, + (const bstring *)&be_const_str___lower__, + (const bstring *)&be_const_str_file, + (const bstring *)&be_const_str_CFG_X3A_X20removing_X20first_X20time_X20marker, + (const bstring *)&be_const_str_COLOR_WHITE, + (const bstring *)&be_const_str_RES_OK, (const bstring *)&be_const_str__X2B, NULL, - (const bstring *)&be_const_str_exec_rules, - (const bstring *)&be_const_str_search, - NULL, - (const bstring *)&be_const_str_SERIAL_7O1, - (const bstring *)&be_const_str_False, - NULL, - (const bstring *)&be_const_str__X2Eautoconf, + (const bstring *)&be_const_str_Animate_X20pc_X20is_X20out_X20of_X20range, (const bstring *)&be_const_str__X3Cbutton_X20name_X3D_X27zipapply_X27_X20class_X3D_X27button_X20bgrn_X27_X3EApply_X20configuration_X3C_X2Fbutton_X3E, - (const bstring *)&be_const_str_COLOR_WHITE, - (const bstring *)&be_const_str_redirect, - (const bstring *)&be_const_str__settings_ptr, - (const bstring *)&be_const_str_day, - (const bstring *)&be_const_str_seti, - (const bstring *)&be_const_str_None, - (const bstring *)&be_const_str__X7Bs_X7DBatt_X20Current_X7Bm_X7D_X25_X2E1f_X20mA_X7Be_X7D, - (const bstring *)&be_const_str__X2502d_X25s_X2502d, + (const bstring *)&be_const_str_AudioOutput, + (const bstring *)&be_const_str__X7Bs_X7DVBus_X20Current_X7Bm_X7D_X25_X2E1f_X20mA_X7Be_X7D, + (const bstring *)&be_const_str_traceback, + (const bstring *)&be_const_str_load_freetype_font, + (const bstring *)&be_const_str_TAP_X3A_X20Loaded_X20Tasmota_X20App_X20_X27_X25s_X27, + (const bstring *)&be_const_str_allocated, + (const bstring *)&be_const_str__X28_X29, + (const bstring *)&be_const_str_get_option, (const bstring *)&be_const_str__X2Fac, + (const bstring *)&be_const_str_AXP192, + (const bstring *)&be_const_str_atan2, + NULL, + NULL, NULL, - (const bstring *)&be_const_str_encrypt, (const bstring *)&be_const_str_CFG_X3A_X20multiple_X20autoconf_X20files_X20found_X2C_X20aborting_X20_X28_X27_X25s_X27_X20_X2B_X20_X27_X25s_X27_X29, NULL, - (const bstring *)&be_const_str___iterator__, - (const bstring *)&be_const_str__X2Esize, - (const bstring *)&be_const_str_begin_multicast, - (const bstring *)&be_const_str__X3Cp_X3E_X3Csmall_X3E_X26nbsp_X3B_X28This_X20feature_X20requires_X20an_X20internet_X20connection_X29_X3C_X2Fsmall_X3E_X3C_X2Fp_X3E, - (const bstring *)&be_const_str_LVG_X3A_X20object_X3A, - (const bstring *)&be_const_str_CFG_X3A_X20loaded_X20_X27_X25s_X27, - (const bstring *)&be_const_str_input, - NULL, - (const bstring *)&be_const_str_read24, - (const bstring *)&be_const_str_back_forth, - NULL, - (const bstring *)&be_const_str_publish, - (const bstring *)&be_const_str_json_fdump_any, - (const bstring *)&be_const_str__X3Cbutton_X20name_X3D_X27reapply_X27_X20class_X3D_X27button_X20bgrn_X27_X3ERe_X2Dapply_X20current_X20configuration_X3C_X2Fbutton_X3E, - (const bstring *)&be_const_str__X23autoexec_X2Ebat, - (const bstring *)&be_const_str_save_before_restart, - (const bstring *)&be_const_str_editable, - (const bstring *)&be_const_str__X23display_X2Eini, - (const bstring *)&be_const_str__global_def, - (const bstring *)&be_const_str_cb_do_nothing, - (const bstring *)&be_const_str__X3A, - (const bstring *)&be_const_str_every_100ms, - (const bstring *)&be_const_str__rules, - (const bstring *)&be_const_str__X28_X29, - (const bstring *)&be_const_str_CFG_X3A_X20loading_X20_X27_X25s_X27, + (const bstring *)&be_const_str__X3Cfieldset_X3E_X3Cstyle_X3E_X2Ebdis_X7Bbackground_X3A_X23888_X3B_X7D_X2Ebdis_X3Ahover_X7Bbackground_X3A_X23888_X3B_X7D_X3C_X2Fstyle_X3E, + (const bstring *)&be_const_str_remove_timer, + (const bstring *)&be_const_str_I2C_X3A, + (const bstring *)&be_const_str_EXTERNAL_I2S, + (const bstring *)&be_const_str_content_send, + (const bstring *)&be_const_str__X3Coption_X20value_X3D_X27_X25s_X27_X3E_X25s_X3C_X2Foption_X3E, + (const bstring *)&be_const_str_gpio, (const bstring *)&be_const_str__X26lt_X3BNone_X26gt_X3B, - (const bstring *)&be_const_str_wire1, - (const bstring *)&be_const_str_init_draw_line_dsc, - (const bstring *)&be_const_str_strptime, - (const bstring *)&be_const_str_get_style_line_color, - NULL, - NULL, - (const bstring *)&be_const_str_Restart_X201, - (const bstring *)&be_const_str_print, - (const bstring *)&be_const_str_BRY_X3A_X20could_X20not_X20save_X20compiled_X20file_X20_X25s_X20_X28_X25s_X29, - (const bstring *)&be_const_str_onsubmit_X3D_X27return_X20confirm_X28_X22This_X20will_X20cause_X20a_X20restart_X2E_X22_X29_X3B_X27_X3E, - (const bstring *)&be_const_str__X26lt_X3BError_X3A_X20apply_X20new_X20or_X20remove_X26gt_X3B, - (const bstring *)&be_const_str_SERIAL_5O2, - (const bstring *)&be_const_str_SERIAL_7E1, - (const bstring *)&be_const_str_reset, - (const bstring *)&be_const_str_ins_time, - (const bstring *)&be_const_str_on, - (const bstring *)&be_const_str__X2E_X2E, - (const bstring *)&be_const_str__error, - (const bstring *)&be_const_str_can_show, - (const bstring *)&be_const_str_asstring, - (const bstring *)&be_const_str__X20, - (const bstring *)&be_const_str_hex, - (const bstring *)&be_const_str__X2Ebec, - (const bstring *)&be_const_str_SERIAL_6O1, - (const bstring *)&be_const_str_duration, + (const bstring *)&be_const_str_exp, (const bstring *)&be_const_str_BRY_X3A_X20Exception_X3E_X20_X27_X25s_X27_X20_X2D_X20_X25s, - (const bstring *)&be_const_str_arg_name, - (const bstring *)&be_const_str_get_coords, - (const bstring *)&be_const_str_get_power, - (const bstring *)&be_const_str_group_def, - (const bstring *)&be_const_str_set_style_text_font, - (const bstring *)&be_const_str_CFG_X3A_X20removing_X20autoconf_X20files, - (const bstring *)&be_const_str_sin, - (const bstring *)&be_const_str_Timer, - (const bstring *)&be_const_str_file, - NULL, - (const bstring *)&be_const_str__X3D_X3D, - NULL, - (const bstring *)&be_const_str_read8, - (const bstring *)&be_const_str_lv_event, - (const bstring *)&be_const_str_cmd, - (const bstring *)&be_const_str_is_dirty, - (const bstring *)&be_const_str_set_bits_per_sample, - (const bstring *)&be_const_str_persist_X2E_p_X20is_X20not_X20a_X20map, - (const bstring *)&be_const_str_CFG_X3A_X20removing_X20first_X20time_X20marker, - (const bstring *)&be_const_str_json_append, - (const bstring *)&be_const_str_serial, - (const bstring *)&be_const_str_area, - (const bstring *)&be_const_str_alternate, - (const bstring *)&be_const_str_add_anim, - (const bstring *)&be_const_str_add_cmd, - (const bstring *)&be_const_str_COLOR_BLACK, - (const bstring *)&be_const_str_log, + (const bstring *)&be_const_str__rules, + (const bstring *)&be_const_str_constructor_cb, + (const bstring *)&be_const_str_bus, + (const bstring *)&be_const_str_connect, + (const bstring *)&be_const_str_code, + (const bstring *)&be_const_str_CFG_X3A_X20exception_X20_X27_X25s_X27_X20_X2D_X20_X27_X25s_X27, (const bstring *)&be_const_str_SERIAL_8O1, - (const bstring *)&be_const_str_ctypes_bytes, - (const bstring *)&be_const_str_SERIAL_6N2, - (const bstring *)&be_const_str_has, - (const bstring *)&be_const_str_setitem, - (const bstring *)&be_const_str_y1, - (const bstring *)&be_const_str__X2Ebe, NULL, - (const bstring *)&be_const_str_preinit, - (const bstring *)&be_const_str__X21_X3D, - (const bstring *)&be_const_str_get_percentage, - (const bstring *)&be_const_str__X3C_X2Fselect_X3E_X3Cp_X3E_X3C_X2Fp_X3E, - (const bstring *)&be_const_str_p1, - (const bstring *)&be_const_str_last_modified, - (const bstring *)&be_const_str_write_bit, - NULL, - (const bstring *)&be_const_str_escape, - (const bstring *)&be_const_str_issubclass, - NULL, - NULL, - (const bstring *)&be_const_str_cb_obj, - (const bstring *)&be_const_str_add_event_cb, - (const bstring *)&be_const_str_cosh, - (const bstring *)&be_const_str__X2C, - (const bstring *)&be_const_str_SERIAL_7N1, - (const bstring *)&be_const_str_SERIAL_6E2, - (const bstring *)&be_const_str_webserver, - (const bstring *)&be_const_str_Auto_X2Dconfiguration, - (const bstring *)&be_const_str___lower__, - (const bstring *)&be_const_str_get_battery_chargin_status, - (const bstring *)&be_const_str_while, - (const bstring *)&be_const_str_pow, - (const bstring *)&be_const_str_bri, - (const bstring *)&be_const_str_make_cb, - (const bstring *)&be_const_str__anonymous_, - NULL, - (const bstring *)&be_const_str_AudioFileSource, - (const bstring *)&be_const_str_widget_instance_size, - (const bstring *)&be_const_str__X3D, - (const bstring *)&be_const_str__def, - (const bstring *)&be_const_str_web_add_console_button, - (const bstring *)&be_const_str_widget_height_def, - (const bstring *)&be_const_str_montserrat_font, - (const bstring *)&be_const_str_set_time, - (const bstring *)&be_const_str_scan, - (const bstring *)&be_const_str__X2Ep2, - (const bstring *)&be_const_str_isrunning, - (const bstring *)&be_const_str_remove, - NULL, - (const bstring *)&be_const_str__X0A, - (const bstring *)&be_const_str_obj_class_create_obj, - (const bstring *)&be_const_str__X2E, - (const bstring *)&be_const_str__X21_X3D_X3D, - (const bstring *)&be_const_str_module, - (const bstring *)&be_const_str__X2Elen, - (const bstring *)&be_const_str_month, - (const bstring *)&be_const_str_get_current_module_path, - (const bstring *)&be_const_str_create_segment, - (const bstring *)&be_const_str_register_button_encoder, - (const bstring *)&be_const_str_split, - (const bstring *)&be_const_str_remove_cmd, - (const bstring *)&be_const_str_remote_ip, - (const bstring *)&be_const_str__X25s_X2Eautoconf, - (const bstring *)&be_const_str_abs, + (const bstring *)&be_const_str_SERIAL_5E2, + (const bstring *)&be_const_str__X3Cselect_X20name_X3D_X27zip_X27_X3E, + (const bstring *)&be_const_str_SERIAL_8N2, + (const bstring *)&be_const_str__X3Cp_X20style_X3D_X27width_X3A340px_X3B_X27_X3E_X3Cb_X3EException_X3A_X3C_X2Fb_X3E_X3Cbr_X3E_X27_X25s_X27_X3Cbr_X3E_X25s_X3C_X2Fp_X3E, + (const bstring *)&be_const_str_static, (const bstring *)&be_const_str__begin_transmission, - (const bstring *)&be_const_str_signal_arcs, - (const bstring *)&be_const_str__X3F, - (const bstring *)&be_const_str_content_start, + (const bstring *)&be_const_str_persist, + (const bstring *)&be_const_str_LVG_X3A_X20object_X3A, + (const bstring *)&be_const_str_get_pixel_color, + (const bstring *)&be_const_str_widget_width_def, + (const bstring *)&be_const_str_get_aps_voltage, + (const bstring *)&be_const_str_BRY_X3A_X20failed_X20to_X20load_X20_persist_X2Ejson, + (const bstring *)&be_const_str_r, + (const bstring *)&be_const_str_set, + (const bstring *)&be_const_str_battery_present, + (const bstring *)&be_const_str_char, + (const bstring *)&be_const_str_create_matrix, + (const bstring *)&be_const_str_tasmota_X2Eget_light_X28_X29_X20is_X20deprecated_X2C_X20use_X20light_X2Eget_X28_X29, + (const bstring *)&be_const_str__X2Ebec, + (const bstring *)&be_const_str_SERIAL_5O2, + (const bstring *)&be_const_str_Parameter_X20error, + (const bstring *)&be_const_str_SERIAL_8E1, + NULL, + (const bstring *)&be_const_str_energy_struct, + (const bstring *)&be_const_str_wifi_arcs_icon, + (const bstring *)&be_const_str_montserrat_font, + (const bstring *)&be_const_str_set_bri, + (const bstring *)&be_const_str_argument_X20must_X20be_X20a_X20list, + (const bstring *)&be_const_str_json_fdump_map, + NULL, + (const bstring *)&be_const_str_exec_rules, + NULL, + (const bstring *)&be_const_str_Wire, + (const bstring *)&be_const_str_resolvecmnd, + (const bstring *)&be_const_str_ip, + NULL, + NULL, + (const bstring *)&be_const_str_add_rule, + (const bstring *)&be_const_str_widget_instance_size, + (const bstring *)&be_const_str__X3C_X2Fselect_X3E_X3Cp_X3E_X3C_X2Fp_X3E, + (const bstring *)&be_const_str_BRY_X3A_X20could_X20not_X20save_X20compiled_X20file_X20_X25s_X20_X28_X25s_X29, + NULL, + (const bstring *)&be_const_str_reset, + (const bstring *)&be_const_str_False, + (const bstring *)&be_const_str_decrypt, + (const bstring *)&be_const_str_state, + NULL, + (const bstring *)&be_const_str_CFG_X3A_X20No_X20_X27_X2A_X2Eautoconf_X27_X20file_X20found, + (const bstring *)&be_const_str_gamma8, + (const bstring *)&be_const_str_POST, + (const bstring *)&be_const_str_web_add_main_button, + (const bstring *)&be_const_str_animators, + (const bstring *)&be_const_str__X21_X3D, + (const bstring *)&be_const_str_SERIAL_7O2, + (const bstring *)&be_const_str_millis, + (const bstring *)&be_const_str__available, + (const bstring *)&be_const_str_name, + (const bstring *)&be_const_str_deregister_obj, + NULL, + (const bstring *)&be_const_str_int, + (const bstring *)&be_const_str_MD5, + (const bstring *)&be_const_str_height_def, + (const bstring *)&be_const_str_p2, + (const bstring *)&be_const_str_arg, + (const bstring *)&be_const_str_get_height, + (const bstring *)&be_const_str_Unknown_X20command, + NULL, + NULL, + (const bstring *)&be_const_str_AudioGeneratorWAV, + (const bstring *)&be_const_str_add_handler, + (const bstring *)&be_const_str_resp_cmnd_error, + (const bstring *)&be_const_str_f, + (const bstring *)&be_const_str_check_not_method, + (const bstring *)&be_const_str_point, + (const bstring *)&be_const_str_Restart_X201, + (const bstring *)&be_const_str__X2C, + NULL, + (const bstring *)&be_const_str_fast_loop, + NULL, + (const bstring *)&be_const_str__X23preinit_X2Ebe, + NULL, + (const bstring *)&be_const_str_gamma, + NULL, + (const bstring *)&be_const_str_set_style_bg_color, + (const bstring *)&be_const_str_enabled, + (const bstring *)&be_const_str__X23autoexec_X2Ebe, + (const bstring *)&be_const_str__X3Clegend_X3E_X3Cb_X20title_X3D_X27Autoconfiguration_X27_X3E_X26nbsp_X3BCurrent_X20auto_X2Dconfiguration_X3C_X2Fb_X3E_X3C_X2Flegend_X3E, + (const bstring *)&be_const_str_SERIAL_6N2, + (const bstring *)&be_const_str__drivers, + (const bstring *)&be_const_str_getbits, + (const bstring *)&be_const_str__cmd, + (const bstring *)&be_const_str_AudioGeneratorMP3, + (const bstring *)&be_const_str__X3Cp_X3ECurrent_X20configuration_X3A_X20_X3C_X2Fp_X3E_X3Cp_X3E_X3Cb_X3E_X25s_X3C_X2Fb_X3E_X3C_X2Fp_X3E, + (const bstring *)&be_const_str_id, + (const bstring *)&be_const_str_PART_MAIN, + (const bstring *)&be_const_str_set_y, + (const bstring *)&be_const_str_content_flush, + NULL, + (const bstring *)&be_const_str__X2508x_X2D_X2504x_X2D_X2504x_X2D_X2504x_X2D_X2504x_X2508x, + (const bstring *)&be_const_str__X26lt_X3BError_X3A_X20apply_X20new_X20or_X20remove_X26gt_X3B, + (const bstring *)&be_const_str_bytes, + (const bstring *)&be_const_str_detect, + (const bstring *)&be_const_str_SK6812_GRBW, + (const bstring *)&be_const_str_AudioOutputI2S, + (const bstring *)&be_const_str_format, + (const bstring *)&be_const_str_clear_first_time, + (const bstring *)&be_const_str_target_search, + (const bstring *)&be_const_str_cb, (const bstring *)&be_const_str_memory, - (const bstring *)&be_const_str_, - (const bstring *)&be_const_str_load_freetype_font, + NULL, + (const bstring *)&be_const_str_HTTP_GET, + (const bstring *)&be_const_str__X3C_X3D, + NULL, + (const bstring *)&be_const_str__X3C_X2Fform_X3E_X3C_X2Fp_X3E, + NULL, + (const bstring *)&be_const_str_True, + (const bstring *)&be_const_str_run_deferred, + (const bstring *)&be_const_str_pc_abs, + (const bstring *)&be_const_str_p1, + (const bstring *)&be_const_str__archive, + (const bstring *)&be_const_str__X3D_X3C_X3E_X21, + NULL, + (const bstring *)&be_const_str__X23display_X2Eini, + NULL, + (const bstring *)&be_const_str_SERIAL_6E1, + (const bstring *)&be_const_str_onsubmit_X3D_X27return_X20confirm_X28_X22This_X20will_X20cause_X20a_X20restart_X2E_X22_X29_X3B_X27_X3E, + (const bstring *)&be_const_str_before_del, + (const bstring *)&be_const_str_a, + (const bstring *)&be_const_str__X3A, + (const bstring *)&be_const_str__X3D, + (const bstring *)&be_const_str__end_transmission, + (const bstring *)&be_const_str__X2F, + NULL, + (const bstring *)&be_const_str_instance, + (const bstring *)&be_const_str_widget_dtor_cb, + NULL, + (const bstring *)&be_const_str__read, + (const bstring *)&be_const_str_COLOR_BLACK, + (const bstring *)&be_const_str__X3Cp_X3E_X3Cform_X20id_X3Dzip_X20style_X3D_X27display_X3A_X20block_X3B_X27_X20action_X3D_X27_X2Fac_X27_X20method_X3D_X27post_X27_X20, + (const bstring *)&be_const_str_has_X20already_X20an_X20event_X20callback, + (const bstring *)&be_const_str_I2C_Driver, + (const bstring *)&be_const_str_add_anim, + (const bstring *)&be_const_str_display, + (const bstring *)&be_const_str_detected_X20on_X20bus, + (const bstring *)&be_const_str__X2E_X2E, + (const bstring *)&be_const_str__request_from, + (const bstring *)&be_const_str_content_button, (const bstring *)&be_const_str_EVENT_DELETE, NULL, - (const bstring *)&be_const_str_get, - (const bstring *)&be_const_str_toupper, - (const bstring *)&be_const_str_flush, - (const bstring *)&be_const_str_coord_arr, - (const bstring *)&be_const_str_event, - (const bstring *)&be_const_str_bytes, - (const bstring *)&be_const_str__X2D_X2D_X3A_X2D_X2D, - NULL, + (const bstring *)&be_const_str__fl, + (const bstring *)&be_const_str_json_fdump, (const bstring *)&be_const_str__lvgl, - (const bstring *)&be_const_str__X2Ew, - (const bstring *)&be_const_str_consume_silence, - (const bstring *)&be_const_str_set_pixel_color, - (const bstring *)&be_const_str_sinh, - (const bstring *)&be_const_str_delete_all_configs, - NULL, + (const bstring *)&be_const_str_LVG_X3A_X20call_X20to_X20unsupported_X20callback, + (const bstring *)&be_const_str_INTERNAL_DAC, + (const bstring *)&be_const_str_autoexec, (const bstring *)&be_const_str_CFG_X3A_X20could_X20not_X20run_X20_X25s_X20_X28_X25s_X20_X2D_X20_X25s_X29, - (const bstring *)&be_const_str_char, - (const bstring *)&be_const_str_couldn_X27t_X20not_X20initialize_X20noepixelbus, - (const bstring *)&be_const_str_get_size, - (const bstring *)&be_const_str_SERIAL_5E2, - (const bstring *)&be_const_str_get_aps_voltage, - (const bstring *)&be_const_str_codedump, - (const bstring *)&be_const_str_CFG_X3A_X20_X27init_X2Ebat_X27_X20done_X2C_X20restarting, - (const bstring *)&be_const_str_classname, - (const bstring *)&be_const_str_getbits, - (const bstring *)&be_const_str_gamma8, - (const bstring *)&be_const_str__X3Clegend_X3E_X3Cb_X20title_X3D_X27New_X20autoconf_X27_X3E_X26nbsp_X3BSelect_X20new_X20auto_X2Dconfiguration_X3C_X2Fb_X3E_X3C_X2Flegend_X3E, - (const bstring *)&be_const_str_event_send, - (const bstring *)&be_const_str__X2F_X2Eautoconf, - (const bstring *)&be_const_str_write_gpio, - (const bstring *)&be_const_str_set_gain, - (const bstring *)&be_const_str__X3C_X3D, - (const bstring *)&be_const_str_SERIAL_5N2, - (const bstring *)&be_const_str_Parameter_X20error, - NULL, - (const bstring *)&be_const_str_ismethod, - (const bstring *)&be_const_str__X3Cp_X3E_X3Cform_X20id_X3Dac_X20action_X3D_X27ac_X27_X20style_X3D_X27display_X3A_X20block_X3B_X27_X20method_X3D_X27get_X27_X3E_X3Cbutton_X3E_X26_X23129668_X3B_X20Auto_X2Dconfiguration_X3C_X2Fbutton_X3E_X3C_X2Fform_X3E_X3C_X2Fp_X3E, - (const bstring *)&be_const_str_classof, - (const bstring *)&be_const_str_add_rule, - (const bstring *)&be_const_str_SERIAL_7E2, - (const bstring *)&be_const_str_acos, - (const bstring *)&be_const_str_add_fast_loop, - NULL, - (const bstring *)&be_const_str_gpio, - (const bstring *)&be_const_str_file_X20extension_X20is_X20not_X20_X27_X2Ebe_X27_X20or_X20_X27_X2Ebec_X27, - (const bstring *)&be_const_str_code, - (const bstring *)&be_const_str__X2504d_X2D_X2502d_X2D_X2502dT_X2502d_X3A_X2502d_X3A_X2502d, - (const bstring *)&be_const_str__X5D, - (const bstring *)&be_const_str___upper__, - (const bstring *)&be_const_str_cos, - NULL, - NULL, - (const bstring *)&be_const_str_check_not_method, - (const bstring *)&be_const_str_remove_driver, - (const bstring *)&be_const_str__X3C_X2Fform_X3E_X3C_X2Fp_X3E, - (const bstring *)&be_const_str_pop, - (const bstring *)&be_const_str_function, - NULL, - (const bstring *)&be_const_str_millis, - (const bstring *)&be_const_str__request_from, - (const bstring *)&be_const_str_width, - NULL, - (const bstring *)&be_const_str_b, - (const bstring *)&be_const_str_AXP192, - NULL, - (const bstring *)&be_const_str_rand, - (const bstring *)&be_const_str_start, - (const bstring *)&be_const_str__cmd, - (const bstring *)&be_const_str_exists, - (const bstring *)&be_const_str_counters, - (const bstring *)&be_const_str_pixel_size, - (const bstring *)&be_const_str_set_dcdc_enable, - (const bstring *)&be_const_str_autorun, - NULL, - (const bstring *)&be_const_str_content_send, - (const bstring *)&be_const_str__, - (const bstring *)&be_const_str_close, - (const bstring *)&be_const_str_get_vbus_current, - (const bstring *)&be_const_str_engine, - (const bstring *)&be_const_str__X3Clabel_X3EChoose_X20a_X20device_X20configuration_X3A_X3C_X2Flabel_X3E_X3Cbr_X3E, - (const bstring *)&be_const_str__X3Coption_X20value_X3D_X27reset_X27_X3E_X26lt_X3BRemove_X20autoconf_X26gt_X3B_X3C_X2Foption_X3E, - (const bstring *)&be_const_str__X3E_X3D, - NULL, - (const bstring *)&be_const_str__X3Clambda_X3E, - (const bstring *)&be_const_str_onsubmit_X3D_X27return_X20confirm_X28_X22This_X20will_X20change_X20the_X20current_X20configuration_X20and_X20cause_X20a_X20restart_X2E_X22_X29_X3B_X27_X3E, - (const bstring *)&be_const_str_pin, - (const bstring *)&be_const_str_assert, - (const bstring *)&be_const_str_lvgl_event_dispatch, - NULL, - (const bstring *)&be_const_str_local, - (const bstring *)&be_const_str__filename, - (const bstring *)&be_const_str__t, - (const bstring *)&be_const_str_content_send_style, - NULL, - (const bstring *)&be_const_str_instance_X20required, - (const bstring *)&be_const_str__end_transmission, - (const bstring *)&be_const_str_EC_C25519, - (const bstring *)&be_const_str_lv_, + (const bstring *)&be_const_str___iterator__, + (const bstring *)&be_const_str__X2Ep2, + (const bstring *)&be_const_str_ctypes_bytes_dyn, + (const bstring *)&be_const_str_cb_obj, (const bstring *)&be_const_str_Tele, - (const bstring *)&be_const_str_EVENT_DRAW_PART_BEGIN, - (const bstring *)&be_const_str_percentage, - (const bstring *)&be_const_str_draw_arc, - (const bstring *)&be_const_str_get_input_power_status, - (const bstring *)&be_const_str__X23, - (const bstring *)&be_const_str__X7Bs_X7DBatt_X20Voltage_X7Bm_X7D_X25_X2E3f_X20V_X7Be_X7D, - (const bstring *)&be_const_str_exp, - (const bstring *)&be_const_str_tele, - (const bstring *)&be_const_str_CFG_X3A_X20ran_X20_X20, - (const bstring *)&be_const_str_SERIAL_8O2, - (const bstring *)&be_const_str_EVENT_DRAW_MAIN, - (const bstring *)&be_const_str_light, - (const bstring *)&be_const_str_Wire, - (const bstring *)&be_const_str_concat, - (const bstring *)&be_const_str_Tasmota, - (const bstring *)&be_const_str_GET, - (const bstring *)&be_const_str_geti, - (const bstring *)&be_const_str_True, - (const bstring *)&be_const_str_name, - (const bstring *)&be_const_str_CFG_X3A_X20removed_X20file_X20_X27_X25s_X27, - (const bstring *)&be_const_str_wire, - (const bstring *)&be_const_str_p2, - (const bstring *)&be_const_str_lv_wifi_bars, - (const bstring *)&be_const_str_SERIAL_5O1, - (const bstring *)&be_const_str_digital_read, - (const bstring *)&be_const_str_hs2rgb, + (const bstring *)&be_const_str_EC_C25519, + (const bstring *)&be_const_str_resp_cmnd_str, + NULL, + NULL, + (const bstring *)&be_const_str_get_bat_charge_current, + (const bstring *)&be_const_str_wifi_bars_icon, + (const bstring *)&be_const_str__X3D_X3D, + (const bstring *)&be_const_str_matrix, + (const bstring *)&be_const_str__X2Elen, + (const bstring *)&be_const_str_copy, + (const bstring *)&be_const_str__global_def, (const bstring *)&be_const_str_imax, - (const bstring *)&be_const_str_CFG_X3A_X20No_X20_X27_X2A_X2Eautoconf_X27_X20file_X20found, - (const bstring *)&be_const_str_BRY_X3A_X20method_X20not_X20allowed_X2C_X20use_X20a_X20closure_X20like_X20_X27_X2F_X20args_X20_X2D_X3E_X20obj_X2Efunc_X28args_X29_X27, - (const bstring *)&be_const_str_set_timer, - (const bstring *)&be_const_str__X2Etapp, - (const bstring *)&be_const_str_lv, - (const bstring *)&be_const_str__X5B, - (const bstring *)&be_const_str_SERIAL_7N2, - (const bstring *)&be_const_str_CFG_X3A_X20loaded_X20_X20, - (const bstring *)&be_const_str__X2Ep, - (const bstring *)&be_const_str__energy, - (const bstring *)&be_const_str_depower, - (const bstring *)&be_const_str_contains, NULL, - (const bstring *)&be_const_str_HTTP_POST, - (const bstring *)&be_const_str__drivers, - (const bstring *)&be_const_str_get_light, - NULL, - (const bstring *)&be_const_str_PART_MAIN, - (const bstring *)&be_const_str_internal_error, - (const bstring *)&be_const_str_asin, - (const bstring *)&be_const_str_call, - (const bstring *)&be_const_str__p, - (const bstring *)&be_const_str_CFG_X3A_X20exception_X20_X27_X25s_X27_X20_X2D_X20_X27_X25s_X27, - (const bstring *)&be_const_str_AudioOutputI2S, - (const bstring *)&be_const_str_BRY_X3A_X20failed_X20to_X20load_X20_persist_X2Ejson, - (const bstring *)&be_const_str__X3Cp_X3E_X3Cform_X20id_X3Dzip_X20style_X3D_X27display_X3A_X20block_X3B_X27_X20action_X3D_X27_X2Fac_X27_X20method_X3D_X27post_X27_X20, - (const bstring *)&be_const_str_static, - (const bstring *)&be_const_str_AudioOutput, - (const bstring *)&be_const_str_clear_first_time, + (const bstring *)&be_const_str_asstring, + (const bstring *)&be_const_str__X3Cbutton_X20name_X3D_X27reapply_X27_X20class_X3D_X27button_X20bgrn_X27_X3ERe_X2Dapply_X20current_X20configuration_X3C_X2Fbutton_X3E, + (const bstring *)&be_const_str_day, NULL, + (const bstring *)&be_const_str_from_to, (const bstring *)&be_const_str_add_driver, - (const bstring *)&be_const_str_pin_used, + (const bstring *)&be_const_str_BUTTON_CONFIGURATION, + (const bstring *)&be_const_str_CFG_X3A_X20running_X20, + (const bstring *)&be_const_str_lv_wifi_bars_icon, + (const bstring *)&be_const_str__X2502d_X25s_X2502d, + (const bstring *)&be_const_str__X5B, + (const bstring *)&be_const_str__X3C, + (const bstring *)&be_const_str_resp_cmnd_done, + (const bstring *)&be_const_str__X2E, + (const bstring *)&be_const_str_widget_destructor, + (const bstring *)&be_const_str__X2504d_X2D_X2502d_X2D_X2502dT_X2502d_X3A_X2502d_X3A_X2502d, + (const bstring *)&be_const_str_Auto_X2Dconfiguration, + (const bstring *)&be_const_str__X0A, + (const bstring *)&be_const_str_cmd, NULL, - (const bstring *)&be_const_str__X2F, - (const bstring *)&be_const_str__X7Bs_X7DVBus_X20Current_X7Bm_X7D_X25_X2E1f_X20mA_X7Be_X7D, - (const bstring *)&be_const_str_SERIAL_6E1, - (const bstring *)&be_const_str_get_free_heap, - (const bstring *)&be_const_str__X3Cfieldset_X3E_X3Cstyle_X3E_X2Ebdis_X7Bbackground_X3A_X23888_X3B_X7D_X2Ebdis_X3Ahover_X7Bbackground_X3A_X23888_X3B_X7D_X3C_X2Fstyle_X3E, - (const bstring *)&be_const_str_resize, - (const bstring *)&be_const_str_ceil, + (const bstring *)&be_const_str_find_key_i, + (const bstring *)&be_const_str_reverse_gamma10, + (const bstring *)&be_const_str_cmd_res, + (const bstring *)&be_const_str_content_start, + (const bstring *)&be_const_str_isnan, + (const bstring *)&be_const_str_SERIAL_6O1, + NULL, + (const bstring *)&be_const_str_number, + (const bstring *)&be_const_str_load, + (const bstring *)&be_const_str__buffer, + NULL, + (const bstring *)&be_const_str_compress, + (const bstring *)&be_const_str__X2Etapp, + NULL, + (const bstring *)&be_const_str_CFG_X3A_X20ran_X20_X20, + (const bstring *)&be_const_str_tag, + (const bstring *)&be_const_str__X2Eautoconf, + (const bstring *)&be_const_str_closure, + (const bstring *)&be_const_str_due, + (const bstring *)&be_const_str__X2Ep1, + (const bstring *)&be_const_str_exists, + (const bstring *)&be_const_str_alternate, + (const bstring *)&be_const_str_arg_size, + (const bstring *)&be_const_str_cb_do_nothing, + (const bstring *)&be_const_str_set_matrix_pixel_color, + (const bstring *)&be_const_str_else, + (const bstring *)&be_const_str_content_send_style, + (const bstring *)&be_const_str__X3E_X3D, + (const bstring *)&be_const_str_bool, + (const bstring *)&be_const_str_consume_stereo, + (const bstring *)&be_const_str_digital_read, + (const bstring *)&be_const_str_get_bat_current, + (const bstring *)&be_const_str__X3Coption_X20value_X3D_X27reset_X27_X3E_X26lt_X3BRemove_X20autoconf_X26gt_X3B_X3C_X2Foption_X3E, + (const bstring *)&be_const_str__X23autoexec_X2Ebat, + (const bstring *)&be_const_str_compile, + (const bstring *)&be_const_str__timers, + NULL, + (const bstring *)&be_const_str_widget_ctor_cb, + (const bstring *)&be_const_str_AudioFileSource, + (const bstring *)&be_const_str_set_time, + (const bstring *)&be_const_str_EVENT_DRAW_MAIN, + (const bstring *)&be_const_str_Leds, + (const bstring *)&be_const_str_set_width, + (const bstring *)&be_const_str_read, + (const bstring *)&be_const_str_draw_arc, + (const bstring *)&be_const_str_c, (const bstring *)&be_const_str_CFG_X3A_X20downloading_X20_X27_X25s_X27, + (const bstring *)&be_const_str__X3F, + (const bstring *)&be_const_str__energy, + NULL, + (const bstring *)&be_const_str__X20, + NULL, + (const bstring *)&be_const_str_AudioGenerator, + (const bstring *)&be_const_str__X3Cp_X3E_X3Cform_X20id_X3Dreapply_X20style_X3D_X27display_X3A_X20block_X3B_X27_X20action_X3D_X27_X2Fac_X27_X20method_X3D_X27post_X27_X20, + (const bstring *)&be_const_str_i2c_enabled, + (const bstring *)&be_const_str_encrypt, + (const bstring *)&be_const_str_add_fast_loop, + (const bstring *)&be_const_str_base_class, + (const bstring *)&be_const_str_dac_voltage, + (const bstring *)&be_const_str_connected, + (const bstring *)&be_const_str_SERIAL_7E1, + (const bstring *)&be_const_str__X3Cp_X3E_X3Cform_X20id_X3Dac_X20action_X3D_X27ac_X27_X20style_X3D_X27display_X3A_X20block_X3B_X27_X20method_X3D_X27get_X27_X3E_X3Cbutton_X3EAuto_X2Dconfiguration_X3C_X2Fbutton_X3E_X3C_X2Fform_X3E_X3C_X2Fp_X3E, + NULL, + (const bstring *)&be_const_str___upper__, + (const bstring *)&be_const_str_CFG_X3A_X20removed_X20file_X20_X27_X25s_X27, + (const bstring *)&be_const_str__X2Esize, + (const bstring *)&be_const_str_button_pressed, + (const bstring *)&be_const_str_introspect, + (const bstring *)&be_const_str_flush, + (const bstring *)&be_const_str_web_add_handler, + (const bstring *)&be_const_str_offset, + NULL, + (const bstring *)&be_const_str_lv_clock_icon, + (const bstring *)&be_const_str_value, + (const bstring *)&be_const_str_abs, + (const bstring *)&be_const_str__X2Ew, + (const bstring *)&be_const_str_CFG_X3A_X20_X27init_X2Ebat_X27_X20done_X2C_X20restarting, (const bstring *)&be_const_str_add_header, - (const bstring *)&be_const_str__X3Cinstance_X3A_X20_X25s_X28_X25s_X2C_X20_X25s_X2C_X20_X25s_X29, - (const bstring *)&be_const_str_wifi, - (const bstring *)&be_const_str_get_bri, - (const bstring *)&be_const_str_var, - (const bstring *)&be_const_str__X23init_X2Ebat, - (const bstring *)&be_const_str_create_custom_widget, - (const bstring *)&be_const_str__X3C + (const bstring *)&be_const_str_https_X3A_X2F_X2Fraw_X2Egithubusercontent_X2Ecom_X2Ftasmota_X2Fautoconf_X2Fmain_X2F_X25s_X2F_X25s_X2Eautoconf, + (const bstring *)&be_const_str_fromb64, + NULL, + (const bstring *)&be_const_str_escape, + (const bstring *)&be_const_str_every_second, + (const bstring *)&be_const_str__write, + (const bstring *)&be_const_str_SERIAL_7N2, + NULL, + (const bstring *)&be_const_str__ptr, + (const bstring *)&be_const_str_publish }; static const struct bconststrtab m_const_string_table = { - .size = 390, - .count = 803, + .size = 393, + .count = 810, .table = m_string_table }; diff --git a/lib/libesp32/berry/generate/be_fixed_be_class_audio_output_i2s.h b/lib/libesp32/berry/generate/be_fixed_be_class_audio_output_i2s.h index 4e6b84e0d..73d8f5954 100644 --- a/lib/libesp32/berry/generate/be_fixed_be_class_audio_output_i2s.h +++ b/lib/libesp32/berry/generate/be_fixed_be_class_audio_output_i2s.h @@ -1,14 +1,17 @@ #include "be_constobj.h" static be_define_const_map_slots(be_class_audio_output_i2s_map) { + { be_const_key(INTERNAL_PDM, -1), be_const_int(AudioOutputI2S::INTERNAL_PDM) }, + { be_const_key(INTERNAL_DAC, 2), be_const_int(AudioOutputI2S::INTERNAL_DAC) }, { be_const_key(init, -1), be_const_func(i2s_output_i2s_init) }, + { be_const_key(EXTERNAL_I2S, 1), be_const_int(AudioOutputI2S::EXTERNAL_I2S) }, { be_const_key(deinit, -1), be_const_func(i2s_output_i2s_deinit) }, { be_const_key(stop, -1), be_const_func(i2s_output_i2s_stop) }, }; static be_define_const_map( be_class_audio_output_i2s_map, - 3 + 6 ); BE_EXPORT_VARIABLE be_define_const_class( diff --git a/lib/libesp32/berry/generate/be_fixed_display.h b/lib/libesp32/berry/generate/be_fixed_display.h new file mode 100644 index 000000000..c9bd97b56 --- /dev/null +++ b/lib/libesp32/berry/generate/be_fixed_display.h @@ -0,0 +1,18 @@ +#include "be_constobj.h" + +static be_define_const_map_slots(m_libdisplay_map) { + { be_const_key(dimmer, -1), be_const_func(be_ntv_display_dimmer) }, + { be_const_key(start, 0), be_const_func(be_ntv_display_start) }, +}; + +static be_define_const_map( + m_libdisplay_map, + 2 +); + +static be_define_const_module( + m_libdisplay, + "display" +); + +BE_EXPORT_VARIABLE be_define_const_native_module(display); diff --git a/lib/libesp32/berry_tasmota/src/be_audio_opus_lib.c b/lib/libesp32/berry_tasmota/src/be_audio_opus_lib.c index 19253b0d3..02b6d9af4 100644 --- a/lib/libesp32/berry_tasmota/src/be_audio_opus_lib.c +++ b/lib/libesp32/berry_tasmota/src/be_audio_opus_lib.c @@ -46,19 +46,29 @@ int32_t be_audio_opus_decoder_deinit(struct bvm *vm) { // decode(payload:bytes) -> pcm:bytes() int32_t be_audio_opus_decoder_decode(struct bvm *vm) { int32_t argc = be_top(vm); - be_call_c_func(vm, NULL, NULL, ".(bytes)"); + be_call_c_func(vm, NULL, NULL, ".(bytes)[ii]"); OpusDecoder* st = (OpusDecoder*) be_convert_single_elt(vm, 1, NULL, NULL); // get value of '.p' - size_t frames_len; - const uint8_t * opus_frame = be_tobytes(vm, 2, &frames_len); + size_t bytes_len; + const uint8_t * opus_frame = be_tobytes(vm, 2, &bytes_len); + int32_t frame_start = 0; + int32_t frame_len = bytes_len; + if (argc >= 3) { frame_start = be_toint(vm, 3); if (frame_start < 0) frame_start = 0; } + if (argc >= 4) { frame_len = be_toint(vm, 4); } - int samples = opus_decoder_get_nb_samples(st, opus_frame, frames_len); + if (frame_start >= bytes_len) { frame_len = 0; } // send empty packet + else if (frame_len < 0) { frame_len = bytes_len - frame_start; } // send all packet, adjust len + else if (frame_start + frame_len > bytes_len) { frame_len = bytes_len - frame_start; } // len is too long, adjust + // adjust start + opus_frame = opus_frame + frame_start; + + int samples = opus_decoder_get_nb_samples(st, opus_frame, frame_len); // tasmota_log_C(LOG_LEVEL_DEBUG, "AUD: frame contains %i samples", samples); // allocate a buffer for the content void * pcm = be_pushbytes(vm, NULL, samples * 2); - int ret = opus_decode(st, opus_frame, frames_len, pcm, samples, 0); + int ret = opus_decode(st, opus_frame, frame_len, pcm, samples, 0); if (ret != samples) { be_raisef(vm, "internal_error", "wrong number of frames %i (supposed to be %i", ret, samples); } be_return(vm); diff --git a/lib/libesp32/berry_tasmota/src/be_autoconf_lib.c b/lib/libesp32/berry_tasmota/src/be_autoconf_lib.c index 6eafcc3a7..805bfb424 100644 --- a/lib/libesp32/berry_tasmota/src/be_autoconf_lib.c +++ b/lib/libesp32/berry_tasmota/src/be_autoconf_lib.c @@ -897,7 +897,7 @@ be_local_closure(Autoconf_web_add_config_button, /* name */ ( &(const bvalue[ 3]) { /* constants */ /* K0 */ be_nested_str(webserver), /* K1 */ be_nested_str(content_send), - /* K2 */ be_nested_str(_X3Cp_X3E_X3Cform_X20id_X3Dac_X20action_X3D_X27ac_X27_X20style_X3D_X27display_X3A_X20block_X3B_X27_X20method_X3D_X27get_X27_X3E_X3Cbutton_X3E_X26_X23129668_X3B_X20Auto_X2Dconfiguration_X3C_X2Fbutton_X3E_X3C_X2Fform_X3E_X3C_X2Fp_X3E), + /* K2 */ be_nested_str(_X3Cp_X3E_X3Cform_X20id_X3Dac_X20action_X3D_X27ac_X27_X20style_X3D_X27display_X3A_X20block_X3B_X27_X20method_X3D_X27get_X27_X3E_X3Cbutton_X3EAuto_X2Dconfiguration_X3C_X2Fbutton_X3E_X3C_X2Fform_X3E_X3C_X2Fp_X3E), }), &be_const_str_web_add_config_button, &be_const_str_solidified, diff --git a/lib/libesp32/berry_tasmota/src/be_display_lib.c b/lib/libesp32/berry_tasmota/src/be_display_lib.c index 3943396fc..69262d667 100644 --- a/lib/libesp32/berry_tasmota/src/be_display_lib.c +++ b/lib/libesp32/berry_tasmota/src/be_display_lib.c @@ -9,21 +9,15 @@ #ifdef USE_DISPLAY -// Tasmota specific - extern int be_ntv_display_start(bvm *vm); +extern int be_ntv_display_dimmer(bvm *vm); -/******************************************************************** -** Solidified module: display -********************************************************************/ -be_local_module(display, - "display", - be_nested_map(1, - ( (struct bmapnode*) &(const bmapnode[]) { - { be_const_key(start, -1), be_const_func(be_ntv_display_start) }, - })) -); -BE_EXPORT_VARIABLE be_define_const_native_module(display); -/********************************************************************/ +/* @const_object_info_begin +module display (scope: global) { + start, func(be_ntv_display_start) + dimmer, func(be_ntv_display_dimmer) +} +@const_object_info_end */ +#include "be_fixed_display.h" -#endif // USE_DISPLAY \ No newline at end of file +#endif // USE_DISPLAY diff --git a/lib/libesp32/berry_tasmota/src/be_i2c_axp192_lib.c b/lib/libesp32/berry_tasmota/src/be_i2c_axp192_lib.c index 298e7b3a2..caf180e84 100644 --- a/lib/libesp32/berry_tasmota/src/be_i2c_axp192_lib.c +++ b/lib/libesp32/berry_tasmota/src/be_i2c_axp192_lib.c @@ -3,6 +3,36 @@ *******************************************************************/ #include "be_constobj.h" +/******************************************************************** +** Solidified function: json_append +********************************************************************/ +be_local_closure(AXP192_json_append, /* name */ + be_nested_proto( + 2, /* nstack */ + 1, /* argc */ + 2, /* varg */ + 0, /* has upvals */ + NULL, /* no upvals */ + 0, /* has sup protos */ + NULL, /* no sub protos */ + 1, /* has constants */ + ( &(const bvalue[ 1]) { /* constants */ + /* K0 */ be_nested_str(wire), + }), + &be_const_str_json_append, + &be_const_str_solidified, + ( &(const binstruction[ 5]) { /* code */ + 0x88040100, // 0000 GETMBR R1 R0 K0 + 0x74060001, // 0001 JMPT R1 #0004 + 0x4C040000, // 0002 LDNIL R1 + 0x80040200, // 0003 RET 1 R1 + 0x80000000, // 0004 RET 0 + }) + ) +); +/*******************************************************************/ + + /******************************************************************** ** Solidified function: get_warning_level ********************************************************************/ @@ -10,7 +40,7 @@ be_local_closure(AXP192_get_warning_level, /* name */ be_nested_proto( 4, /* nstack */ 1, /* argc */ - 0, /* varg */ + 2, /* varg */ 0, /* has upvals */ NULL, /* no upvals */ 0, /* has sup protos */ @@ -34,536 +64,6 @@ be_local_closure(AXP192_get_warning_level, /* name */ /*******************************************************************/ -/******************************************************************** -** Solidified function: get_vbus_current -********************************************************************/ -be_local_closure(AXP192_get_vbus_current, /* name */ - be_nested_proto( - 4, /* nstack */ - 1, /* argc */ - 0, /* varg */ - 0, /* has upvals */ - NULL, /* no upvals */ - 0, /* has sup protos */ - NULL, /* no sub protos */ - 1, /* has constants */ - ( &(const bvalue[ 2]) { /* constants */ - /* K0 */ be_nested_str(read12), - /* K1 */ be_const_real_hex(0x3EC00000), - }), - &be_const_str_get_vbus_current, - &be_const_str_solidified, - ( &(const binstruction[ 5]) { /* code */ - 0x8C040100, // 0000 GETMET R1 R0 K0 - 0x540E005B, // 0001 LDINT R3 92 - 0x7C040400, // 0002 CALL R1 2 - 0x08040301, // 0003 MUL R1 R1 K1 - 0x80040200, // 0004 RET 1 R1 - }) - ) -); -/*******************************************************************/ - - -/******************************************************************** -** Solidified function: set_chg_current -********************************************************************/ -be_local_closure(AXP192_set_chg_current, /* name */ - be_nested_proto( - 8, /* nstack */ - 2, /* argc */ - 0, /* varg */ - 0, /* has upvals */ - NULL, /* no upvals */ - 0, /* has sup protos */ - NULL, /* no sub protos */ - 1, /* has constants */ - ( &(const bvalue[ 2]) { /* constants */ - /* K0 */ be_nested_str(write8), - /* K1 */ be_nested_str(read8), - }), - &be_const_str_set_chg_current, - &be_const_str_solidified, - ( &(const binstruction[12]) { /* code */ - 0x8C080100, // 0000 GETMET R2 R0 K0 - 0x54120032, // 0001 LDINT R4 51 - 0x8C140101, // 0002 GETMET R5 R0 K1 - 0x541E0032, // 0003 LDINT R7 51 - 0x7C140400, // 0004 CALL R5 2 - 0x541A00EF, // 0005 LDINT R6 240 - 0x2C140A06, // 0006 AND R5 R5 R6 - 0x541A000E, // 0007 LDINT R6 15 - 0x2C180206, // 0008 AND R6 R1 R6 - 0x30140A06, // 0009 OR R5 R5 R6 - 0x7C080600, // 000A CALL R2 3 - 0x80000000, // 000B RET 0 - }) - ) -); -/*******************************************************************/ - - -/******************************************************************** -** Solidified function: get_bat_current -********************************************************************/ -be_local_closure(AXP192_get_bat_current, /* name */ - be_nested_proto( - 5, /* nstack */ - 1, /* argc */ - 0, /* varg */ - 0, /* has upvals */ - NULL, /* no upvals */ - 0, /* has sup protos */ - NULL, /* no sub protos */ - 1, /* has constants */ - ( &(const bvalue[ 2]) { /* constants */ - /* K0 */ be_nested_str(read13), - /* K1 */ be_const_real_hex(0x3F000000), - }), - &be_const_str_get_bat_current, - &be_const_str_solidified, - ( &(const binstruction[ 9]) { /* code */ - 0x8C040100, // 0000 GETMET R1 R0 K0 - 0x540E0079, // 0001 LDINT R3 122 - 0x7C040400, // 0002 CALL R1 2 - 0x8C080100, // 0003 GETMET R2 R0 K0 - 0x5412007B, // 0004 LDINT R4 124 - 0x7C080400, // 0005 CALL R2 2 - 0x04040202, // 0006 SUB R1 R1 R2 - 0x08040301, // 0007 MUL R1 R1 K1 - 0x80040200, // 0008 RET 1 R1 - }) - ) -); -/*******************************************************************/ - - -/******************************************************************** -** Solidified function: get_bat_power -********************************************************************/ -be_local_closure(AXP192_get_bat_power, /* name */ - be_nested_proto( - 4, /* nstack */ - 1, /* argc */ - 0, /* varg */ - 0, /* has upvals */ - NULL, /* no upvals */ - 0, /* has sup protos */ - NULL, /* no sub protos */ - 1, /* has constants */ - ( &(const bvalue[ 2]) { /* constants */ - /* K0 */ be_nested_str(read24), - /* K1 */ be_const_real_hex(0x3A102DE1), - }), - &be_const_str_get_bat_power, - &be_const_str_solidified, - ( &(const binstruction[ 5]) { /* code */ - 0x8C040100, // 0000 GETMET R1 R0 K0 - 0x540E006F, // 0001 LDINT R3 112 - 0x7C040400, // 0002 CALL R1 2 - 0x08040301, // 0003 MUL R1 R1 K1 - 0x80040200, // 0004 RET 1 R1 - }) - ) -); -/*******************************************************************/ - - -/******************************************************************** -** Solidified function: json_append -********************************************************************/ -be_local_closure(AXP192_json_append, /* name */ - be_nested_proto( - 2, /* nstack */ - 1, /* argc */ - 0, /* varg */ - 0, /* has upvals */ - NULL, /* no upvals */ - 0, /* has sup protos */ - NULL, /* no sub protos */ - 1, /* has constants */ - ( &(const bvalue[ 1]) { /* constants */ - /* K0 */ be_nested_str(wire), - }), - &be_const_str_json_append, - &be_const_str_solidified, - ( &(const binstruction[ 5]) { /* code */ - 0x88040100, // 0000 GETMBR R1 R0 K0 - 0x74060001, // 0001 JMPT R1 #0004 - 0x4C040000, // 0002 LDNIL R1 - 0x80040200, // 0003 RET 1 R1 - 0x80000000, // 0004 RET 0 - }) - ) -); -/*******************************************************************/ - - -/******************************************************************** -** Solidified function: get_vbus_voltage -********************************************************************/ -be_local_closure(AXP192_get_vbus_voltage, /* name */ - be_nested_proto( - 4, /* nstack */ - 1, /* argc */ - 0, /* varg */ - 0, /* has upvals */ - NULL, /* no upvals */ - 0, /* has sup protos */ - NULL, /* no sub protos */ - 1, /* has constants */ - ( &(const bvalue[ 2]) { /* constants */ - /* K0 */ be_nested_str(read12), - /* K1 */ be_const_real_hex(0x3ADED28A), - }), - &be_const_str_get_vbus_voltage, - &be_const_str_solidified, - ( &(const binstruction[ 5]) { /* code */ - 0x8C040100, // 0000 GETMET R1 R0 K0 - 0x540E0059, // 0001 LDINT R3 90 - 0x7C040400, // 0002 CALL R1 2 - 0x08040301, // 0003 MUL R1 R1 K1 - 0x80040200, // 0004 RET 1 R1 - }) - ) -); -/*******************************************************************/ - - -/******************************************************************** -** Solidified function: get_temp -********************************************************************/ -be_local_closure(AXP192_get_temp, /* name */ - be_nested_proto( - 4, /* nstack */ - 1, /* argc */ - 0, /* varg */ - 0, /* has upvals */ - NULL, /* no upvals */ - 0, /* has sup protos */ - NULL, /* no sub protos */ - 1, /* has constants */ - ( &(const bvalue[ 3]) { /* constants */ - /* K0 */ be_nested_str(read12), - /* K1 */ be_const_real_hex(0x3DCCCCCD), - /* K2 */ be_const_real_hex(0x4310B333), - }), - &be_const_str_get_temp, - &be_const_str_solidified, - ( &(const binstruction[ 6]) { /* code */ - 0x8C040100, // 0000 GETMET R1 R0 K0 - 0x540E005D, // 0001 LDINT R3 94 - 0x7C040400, // 0002 CALL R1 2 - 0x08040301, // 0003 MUL R1 R1 K1 - 0x04040302, // 0004 SUB R1 R1 K2 - 0x80040200, // 0005 RET 1 R1 - }) - ) -); -/*******************************************************************/ - - -/******************************************************************** -** Solidified function: battery_present -********************************************************************/ -be_local_closure(AXP192_battery_present, /* name */ - be_nested_proto( - 6, /* nstack */ - 1, /* argc */ - 0, /* varg */ - 0, /* has upvals */ - NULL, /* no upvals */ - 0, /* has sup protos */ - NULL, /* no sub protos */ - 1, /* has constants */ - ( &(const bvalue[ 4]) { /* constants */ - /* K0 */ be_nested_str(wire), - /* K1 */ be_nested_str(read), - /* K2 */ be_nested_str(addr), - /* K3 */ be_const_int(1), - }), - &be_const_str_battery_present, - &be_const_str_solidified, - ( &(const binstruction[15]) { /* code */ - 0x88040100, // 0000 GETMBR R1 R0 K0 - 0x8C040301, // 0001 GETMET R1 R1 K1 - 0x880C0102, // 0002 GETMBR R3 R0 K2 - 0x58100003, // 0003 LDCONST R4 K3 - 0x58140003, // 0004 LDCONST R5 K3 - 0x7C040800, // 0005 CALL R1 4 - 0x540A001F, // 0006 LDINT R2 32 - 0x2C040202, // 0007 AND R1 R1 R2 - 0x78060002, // 0008 JMPF R1 #000C - 0x50040200, // 0009 LDBOOL R1 1 0 - 0x80040200, // 000A RET 1 R1 - 0x70020001, // 000B JMP #000E - 0x50040000, // 000C LDBOOL R1 0 0 - 0x80040200, // 000D RET 1 R1 - 0x80000000, // 000E RET 0 - }) - ) -); -/*******************************************************************/ - - -/******************************************************************** -** Solidified function: get_aps_voltage -********************************************************************/ -be_local_closure(AXP192_get_aps_voltage, /* name */ - be_nested_proto( - 4, /* nstack */ - 1, /* argc */ - 0, /* varg */ - 0, /* has upvals */ - NULL, /* no upvals */ - 0, /* has sup protos */ - NULL, /* no sub protos */ - 1, /* has constants */ - ( &(const bvalue[ 2]) { /* constants */ - /* K0 */ be_nested_str(read12), - /* K1 */ be_const_real_hex(0x3AB78035), - }), - &be_const_str_get_aps_voltage, - &be_const_str_solidified, - ( &(const binstruction[ 5]) { /* code */ - 0x8C040100, // 0000 GETMET R1 R0 K0 - 0x540E007D, // 0001 LDINT R3 126 - 0x7C040400, // 0002 CALL R1 2 - 0x08040301, // 0003 MUL R1 R1 K1 - 0x80040200, // 0004 RET 1 R1 - }) - ) -); -/*******************************************************************/ - - -/******************************************************************** -** Solidified function: set_dcdc_enable -********************************************************************/ -be_local_closure(AXP192_set_dcdc_enable, /* name */ - be_nested_proto( - 8, /* nstack */ - 3, /* argc */ - 0, /* varg */ - 0, /* has upvals */ - NULL, /* no upvals */ - 0, /* has sup protos */ - NULL, /* no sub protos */ - 1, /* has constants */ - ( &(const bvalue[ 5]) { /* constants */ - /* K0 */ be_const_int(1), - /* K1 */ be_nested_str(write_bit), - /* K2 */ be_const_int(0), - /* K3 */ be_const_int(2), - /* K4 */ be_const_int(3), - }), - &be_const_str_set_dcdc_enable, - &be_const_str_solidified, - ( &(const binstruction[22]) { /* code */ - 0x1C0C0300, // 0000 EQ R3 R1 K0 - 0x780E0004, // 0001 JMPF R3 #0007 - 0x8C0C0101, // 0002 GETMET R3 R0 K1 - 0x54160011, // 0003 LDINT R5 18 - 0x58180002, // 0004 LDCONST R6 K2 - 0x5C1C0400, // 0005 MOVE R7 R2 - 0x7C0C0800, // 0006 CALL R3 4 - 0x1C0C0303, // 0007 EQ R3 R1 K3 - 0x780E0004, // 0008 JMPF R3 #000E - 0x8C0C0101, // 0009 GETMET R3 R0 K1 - 0x54160011, // 000A LDINT R5 18 - 0x541A0003, // 000B LDINT R6 4 - 0x5C1C0400, // 000C MOVE R7 R2 - 0x7C0C0800, // 000D CALL R3 4 - 0x1C0C0304, // 000E EQ R3 R1 K4 - 0x780E0004, // 000F JMPF R3 #0015 - 0x8C0C0101, // 0010 GETMET R3 R0 K1 - 0x54160011, // 0011 LDINT R5 18 - 0x58180000, // 0012 LDCONST R6 K0 - 0x5C1C0400, // 0013 MOVE R7 R2 - 0x7C0C0800, // 0014 CALL R3 4 - 0x80000000, // 0015 RET 0 - }) - ) -); -/*******************************************************************/ - - -/******************************************************************** -** Solidified function: set_ldo_voltage -********************************************************************/ -be_local_closure(AXP192_set_ldo_voltage, /* name */ - be_nested_proto( - 9, /* nstack */ - 3, /* argc */ - 0, /* varg */ - 0, /* has upvals */ - NULL, /* no upvals */ - 0, /* has sup protos */ - NULL, /* no sub protos */ - 1, /* has constants */ - ( &(const bvalue[ 4]) { /* constants */ - /* K0 */ be_const_int(2), - /* K1 */ be_nested_str(write8), - /* K2 */ be_nested_str(read8), - /* K3 */ be_const_int(3), - }), - &be_const_str_set_ldo_voltage, - &be_const_str_solidified, - ( &(const binstruction[39]) { /* code */ - 0x540E0CE3, // 0000 LDINT R3 3300 - 0x240C0403, // 0001 GT R3 R2 R3 - 0x780E0001, // 0002 JMPF R3 #0005 - 0x540A000E, // 0003 LDINT R2 15 - 0x70020004, // 0004 JMP #000A - 0x540E0063, // 0005 LDINT R3 100 - 0x0C0C0403, // 0006 DIV R3 R2 R3 - 0x54120011, // 0007 LDINT R4 18 - 0x040C0604, // 0008 SUB R3 R3 R4 - 0x5C080600, // 0009 MOVE R2 R3 - 0x1C0C0300, // 000A EQ R3 R1 K0 - 0x780E000C, // 000B JMPF R3 #0019 - 0x8C0C0101, // 000C GETMET R3 R0 K1 - 0x54160027, // 000D LDINT R5 40 - 0x8C180102, // 000E GETMET R6 R0 K2 - 0x54220027, // 000F LDINT R8 40 - 0x7C180400, // 0010 CALL R6 2 - 0x541E000E, // 0011 LDINT R7 15 - 0x2C180C07, // 0012 AND R6 R6 R7 - 0x541E000E, // 0013 LDINT R7 15 - 0x2C1C0407, // 0014 AND R7 R2 R7 - 0x54220003, // 0015 LDINT R8 4 - 0x381C0E08, // 0016 SHL R7 R7 R8 - 0x30180C07, // 0017 OR R6 R6 R7 - 0x7C0C0600, // 0018 CALL R3 3 - 0x1C0C0303, // 0019 EQ R3 R1 K3 - 0x780E000A, // 001A JMPF R3 #0026 - 0x8C0C0101, // 001B GETMET R3 R0 K1 - 0x54160027, // 001C LDINT R5 40 - 0x8C180102, // 001D GETMET R6 R0 K2 - 0x54220027, // 001E LDINT R8 40 - 0x7C180400, // 001F CALL R6 2 - 0x541E00EF, // 0020 LDINT R7 240 - 0x2C180C07, // 0021 AND R6 R6 R7 - 0x541E000E, // 0022 LDINT R7 15 - 0x2C1C0407, // 0023 AND R7 R2 R7 - 0x30180C07, // 0024 OR R6 R6 R7 - 0x7C0C0600, // 0025 CALL R3 3 - 0x80000000, // 0026 RET 0 - }) - ) -); -/*******************************************************************/ - - -/******************************************************************** -** Solidified function: init -********************************************************************/ -be_local_closure(AXP192_init, /* name */ - be_nested_proto( - 5, /* nstack */ - 1, /* argc */ - 0, /* varg */ - 0, /* has upvals */ - NULL, /* no upvals */ - 0, /* has sup protos */ - NULL, /* no sub protos */ - 1, /* has constants */ - ( &(const bvalue[ 3]) { /* constants */ - /* K0 */ be_nested_str(I2C_Driver), - /* K1 */ be_nested_str(init), - /* K2 */ be_nested_str(AXP192), - }), - &be_const_str_init, - &be_const_str_solidified, - ( &(const binstruction[ 9]) { /* code */ - 0x60040003, // 0000 GETGBL R1 G3 - 0x5C080000, // 0001 MOVE R2 R0 - 0xB80E0000, // 0002 GETNGBL R3 K0 - 0x7C040400, // 0003 CALL R1 2 - 0x8C040301, // 0004 GETMET R1 R1 K1 - 0x580C0002, // 0005 LDCONST R3 K2 - 0x54120033, // 0006 LDINT R4 52 - 0x7C040600, // 0007 CALL R1 3 - 0x80000000, // 0008 RET 0 - }) - ) -); -/*******************************************************************/ - - -/******************************************************************** -** Solidified function: get_bat_voltage -********************************************************************/ -be_local_closure(AXP192_get_bat_voltage, /* name */ - be_nested_proto( - 4, /* nstack */ - 1, /* argc */ - 0, /* varg */ - 0, /* has upvals */ - NULL, /* no upvals */ - 0, /* has sup protos */ - NULL, /* no sub protos */ - 1, /* has constants */ - ( &(const bvalue[ 2]) { /* constants */ - /* K0 */ be_nested_str(read12), - /* K1 */ be_const_real_hex(0x3A902DE0), - }), - &be_const_str_get_bat_voltage, - &be_const_str_solidified, - ( &(const binstruction[ 5]) { /* code */ - 0x8C040100, // 0000 GETMET R1 R0 K0 - 0x540E0077, // 0001 LDINT R3 120 - 0x7C040400, // 0002 CALL R1 2 - 0x08040301, // 0003 MUL R1 R1 K1 - 0x80040200, // 0004 RET 1 R1 - }) - ) -); -/*******************************************************************/ - - -/******************************************************************** -** Solidified function: set_ldo_enable -********************************************************************/ -be_local_closure(AXP192_set_ldo_enable, /* name */ - be_nested_proto( - 8, /* nstack */ - 3, /* argc */ - 0, /* varg */ - 0, /* has upvals */ - NULL, /* no upvals */ - 0, /* has sup protos */ - NULL, /* no sub protos */ - 1, /* has constants */ - ( &(const bvalue[ 3]) { /* constants */ - /* K0 */ be_const_int(2), - /* K1 */ be_nested_str(write_bit), - /* K2 */ be_const_int(3), - }), - &be_const_str_set_ldo_enable, - &be_const_str_solidified, - ( &(const binstruction[15]) { /* code */ - 0x1C0C0300, // 0000 EQ R3 R1 K0 - 0x780E0004, // 0001 JMPF R3 #0007 - 0x8C0C0101, // 0002 GETMET R3 R0 K1 - 0x54160011, // 0003 LDINT R5 18 - 0x58180000, // 0004 LDCONST R6 K0 - 0x5C1C0400, // 0005 MOVE R7 R2 - 0x7C0C0800, // 0006 CALL R3 4 - 0x1C0C0302, // 0007 EQ R3 R1 K2 - 0x780E0004, // 0008 JMPF R3 #000E - 0x8C0C0101, // 0009 GETMET R3 R0 K1 - 0x54160011, // 000A LDINT R5 18 - 0x58180002, // 000B LDCONST R6 K2 - 0x5C1C0400, // 000C MOVE R7 R2 - 0x7C0C0800, // 000D CALL R3 4 - 0x80000000, // 000E RET 0 - }) - ) -); -/*******************************************************************/ - - /******************************************************************** ** Solidified function: set_dc_voltage ********************************************************************/ @@ -571,7 +71,7 @@ be_local_closure(AXP192_set_dc_voltage, /* name */ be_nested_proto( 11, /* nstack */ 3, /* argc */ - 0, /* varg */ + 2, /* varg */ 0, /* has upvals */ NULL, /* no upvals */ 0, /* has sup protos */ @@ -642,6 +142,111 @@ be_local_closure(AXP192_set_dc_voltage, /* name */ /*******************************************************************/ +/******************************************************************** +** Solidified function: get_vbus_current +********************************************************************/ +be_local_closure(AXP192_get_vbus_current, /* name */ + be_nested_proto( + 4, /* nstack */ + 1, /* argc */ + 2, /* varg */ + 0, /* has upvals */ + NULL, /* no upvals */ + 0, /* has sup protos */ + NULL, /* no sub protos */ + 1, /* has constants */ + ( &(const bvalue[ 2]) { /* constants */ + /* K0 */ be_nested_str(read12), + /* K1 */ be_const_real_hex(0x3EC00000), + }), + &be_const_str_get_vbus_current, + &be_const_str_solidified, + ( &(const binstruction[ 5]) { /* code */ + 0x8C040100, // 0000 GETMET R1 R0 K0 + 0x540E005B, // 0001 LDINT R3 92 + 0x7C040400, // 0002 CALL R1 2 + 0x08040301, // 0003 MUL R1 R1 K1 + 0x80040200, // 0004 RET 1 R1 + }) + ) +); +/*******************************************************************/ + + +/******************************************************************** +** Solidified function: battery_present +********************************************************************/ +be_local_closure(AXP192_battery_present, /* name */ + be_nested_proto( + 6, /* nstack */ + 1, /* argc */ + 2, /* varg */ + 0, /* has upvals */ + NULL, /* no upvals */ + 0, /* has sup protos */ + NULL, /* no sub protos */ + 1, /* has constants */ + ( &(const bvalue[ 4]) { /* constants */ + /* K0 */ be_nested_str(wire), + /* K1 */ be_nested_str(read), + /* K2 */ be_nested_str(addr), + /* K3 */ be_const_int(1), + }), + &be_const_str_battery_present, + &be_const_str_solidified, + ( &(const binstruction[15]) { /* code */ + 0x88040100, // 0000 GETMBR R1 R0 K0 + 0x8C040301, // 0001 GETMET R1 R1 K1 + 0x880C0102, // 0002 GETMBR R3 R0 K2 + 0x58100003, // 0003 LDCONST R4 K3 + 0x58140003, // 0004 LDCONST R5 K3 + 0x7C040800, // 0005 CALL R1 4 + 0x540A001F, // 0006 LDINT R2 32 + 0x2C040202, // 0007 AND R1 R1 R2 + 0x78060002, // 0008 JMPF R1 #000C + 0x50040200, // 0009 LDBOOL R1 1 0 + 0x80040200, // 000A RET 1 R1 + 0x70020001, // 000B JMP #000E + 0x50040000, // 000C LDBOOL R1 0 0 + 0x80040200, // 000D RET 1 R1 + 0x80000000, // 000E RET 0 + }) + ) +); +/*******************************************************************/ + + +/******************************************************************** +** Solidified function: get_bat_voltage +********************************************************************/ +be_local_closure(AXP192_get_bat_voltage, /* name */ + be_nested_proto( + 4, /* nstack */ + 1, /* argc */ + 2, /* varg */ + 0, /* has upvals */ + NULL, /* no upvals */ + 0, /* has sup protos */ + NULL, /* no sub protos */ + 1, /* has constants */ + ( &(const bvalue[ 2]) { /* constants */ + /* K0 */ be_nested_str(read12), + /* K1 */ be_const_real_hex(0x3A902DE0), + }), + &be_const_str_get_bat_voltage, + &be_const_str_solidified, + ( &(const binstruction[ 5]) { /* code */ + 0x8C040100, // 0000 GETMET R1 R0 K0 + 0x540E0077, // 0001 LDINT R3 120 + 0x7C040400, // 0002 CALL R1 2 + 0x08040301, // 0003 MUL R1 R1 K1 + 0x80040200, // 0004 RET 1 R1 + }) + ) +); +/*******************************************************************/ + + /******************************************************************** ** Solidified function: write_gpio ********************************************************************/ @@ -649,7 +254,7 @@ be_local_closure(AXP192_write_gpio, /* name */ be_nested_proto( 8, /* nstack */ 3, /* argc */ - 0, /* varg */ + 2, /* varg */ 0, /* has upvals */ NULL, /* no upvals */ 0, /* has sup protos */ @@ -691,6 +296,255 @@ be_local_closure(AXP192_write_gpio, /* name */ /*******************************************************************/ +/******************************************************************** +** Solidified function: get_input_power_status +********************************************************************/ +be_local_closure(AXP192_get_input_power_status, /* name */ + be_nested_proto( + 6, /* nstack */ + 1, /* argc */ + 2, /* varg */ + 0, /* has upvals */ + NULL, /* no upvals */ + 0, /* has sup protos */ + NULL, /* no sub protos */ + 1, /* has constants */ + ( &(const bvalue[ 5]) { /* constants */ + /* K0 */ be_nested_str(wire), + /* K1 */ be_nested_str(read), + /* K2 */ be_nested_str(addr), + /* K3 */ be_const_int(0), + /* K4 */ be_const_int(1), + }), + &be_const_str_get_input_power_status, + &be_const_str_solidified, + ( &(const binstruction[ 7]) { /* code */ + 0x88040100, // 0000 GETMBR R1 R0 K0 + 0x8C040301, // 0001 GETMET R1 R1 K1 + 0x880C0102, // 0002 GETMBR R3 R0 K2 + 0x58100003, // 0003 LDCONST R4 K3 + 0x58140004, // 0004 LDCONST R5 K4 + 0x7C040800, // 0005 CALL R1 4 + 0x80040200, // 0006 RET 1 R1 + }) + ) +); +/*******************************************************************/ + + +/******************************************************************** +** Solidified function: get_bat_charge_current +********************************************************************/ +be_local_closure(AXP192_get_bat_charge_current, /* name */ + be_nested_proto( + 4, /* nstack */ + 1, /* argc */ + 2, /* varg */ + 0, /* has upvals */ + NULL, /* no upvals */ + 0, /* has sup protos */ + NULL, /* no sub protos */ + 1, /* has constants */ + ( &(const bvalue[ 2]) { /* constants */ + /* K0 */ be_nested_str(read13), + /* K1 */ be_const_real_hex(0x3F000000), + }), + &be_const_str_get_bat_charge_current, + &be_const_str_solidified, + ( &(const binstruction[ 5]) { /* code */ + 0x8C040100, // 0000 GETMET R1 R0 K0 + 0x540E0079, // 0001 LDINT R3 122 + 0x7C040400, // 0002 CALL R1 2 + 0x08040301, // 0003 MUL R1 R1 K1 + 0x80040200, // 0004 RET 1 R1 + }) + ) +); +/*******************************************************************/ + + +/******************************************************************** +** Solidified function: init +********************************************************************/ +be_local_closure(AXP192_init, /* name */ + be_nested_proto( + 5, /* nstack */ + 1, /* argc */ + 2, /* varg */ + 0, /* has upvals */ + NULL, /* no upvals */ + 0, /* has sup protos */ + NULL, /* no sub protos */ + 1, /* has constants */ + ( &(const bvalue[ 3]) { /* constants */ + /* K0 */ be_nested_str(I2C_Driver), + /* K1 */ be_nested_str(init), + /* K2 */ be_nested_str(AXP192), + }), + &be_const_str_init, + &be_const_str_solidified, + ( &(const binstruction[ 9]) { /* code */ + 0x60040003, // 0000 GETGBL R1 G3 + 0x5C080000, // 0001 MOVE R2 R0 + 0xB80E0000, // 0002 GETNGBL R3 K0 + 0x7C040400, // 0003 CALL R1 2 + 0x8C040301, // 0004 GETMET R1 R1 K1 + 0x580C0002, // 0005 LDCONST R3 K2 + 0x54120033, // 0006 LDINT R4 52 + 0x7C040600, // 0007 CALL R1 3 + 0x80000000, // 0008 RET 0 + }) + ) +); +/*******************************************************************/ + + +/******************************************************************** +** Solidified function: set_chg_current +********************************************************************/ +be_local_closure(AXP192_set_chg_current, /* name */ + be_nested_proto( + 8, /* nstack */ + 2, /* argc */ + 2, /* varg */ + 0, /* has upvals */ + NULL, /* no upvals */ + 0, /* has sup protos */ + NULL, /* no sub protos */ + 1, /* has constants */ + ( &(const bvalue[ 2]) { /* constants */ + /* K0 */ be_nested_str(write8), + /* K1 */ be_nested_str(read8), + }), + &be_const_str_set_chg_current, + &be_const_str_solidified, + ( &(const binstruction[12]) { /* code */ + 0x8C080100, // 0000 GETMET R2 R0 K0 + 0x54120032, // 0001 LDINT R4 51 + 0x8C140101, // 0002 GETMET R5 R0 K1 + 0x541E0032, // 0003 LDINT R7 51 + 0x7C140400, // 0004 CALL R5 2 + 0x541A00EF, // 0005 LDINT R6 240 + 0x2C140A06, // 0006 AND R5 R5 R6 + 0x541A000E, // 0007 LDINT R6 15 + 0x2C180206, // 0008 AND R6 R1 R6 + 0x30140A06, // 0009 OR R5 R5 R6 + 0x7C080600, // 000A CALL R2 3 + 0x80000000, // 000B RET 0 + }) + ) +); +/*******************************************************************/ + + +/******************************************************************** +** Solidified function: get_battery_chargin_status +********************************************************************/ +be_local_closure(AXP192_get_battery_chargin_status, /* name */ + be_nested_proto( + 6, /* nstack */ + 1, /* argc */ + 2, /* varg */ + 0, /* has upvals */ + NULL, /* no upvals */ + 0, /* has sup protos */ + NULL, /* no sub protos */ + 1, /* has constants */ + ( &(const bvalue[ 4]) { /* constants */ + /* K0 */ be_nested_str(wire), + /* K1 */ be_nested_str(read), + /* K2 */ be_nested_str(addr), + /* K3 */ be_const_int(1), + }), + &be_const_str_get_battery_chargin_status, + &be_const_str_solidified, + ( &(const binstruction[ 7]) { /* code */ + 0x88040100, // 0000 GETMBR R1 R0 K0 + 0x8C040301, // 0001 GETMET R1 R1 K1 + 0x880C0102, // 0002 GETMBR R3 R0 K2 + 0x58100003, // 0003 LDCONST R4 K3 + 0x58140003, // 0004 LDCONST R5 K3 + 0x7C040800, // 0005 CALL R1 4 + 0x80040200, // 0006 RET 1 R1 + }) + ) +); +/*******************************************************************/ + + +/******************************************************************** +** Solidified function: set_exten +********************************************************************/ +be_local_closure(AXP192_set_exten, /* name */ + be_nested_proto( + 7, /* nstack */ + 2, /* argc */ + 2, /* varg */ + 0, /* has upvals */ + NULL, /* no upvals */ + 0, /* has sup protos */ + NULL, /* no sub protos */ + 1, /* has constants */ + ( &(const bvalue[ 1]) { /* constants */ + /* K0 */ be_nested_str(write_bit), + }), + &be_const_str_set_exten, + &be_const_str_solidified, + ( &(const binstruction[ 6]) { /* code */ + 0x8C080100, // 0000 GETMET R2 R0 K0 + 0x54120011, // 0001 LDINT R4 18 + 0x54160005, // 0002 LDINT R5 6 + 0x5C180200, // 0003 MOVE R6 R1 + 0x7C080800, // 0004 CALL R2 4 + 0x80000000, // 0005 RET 0 + }) + ) +); +/*******************************************************************/ + + +/******************************************************************** +** Solidified function: set_ldo_enable +********************************************************************/ +be_local_closure(AXP192_set_ldo_enable, /* name */ + be_nested_proto( + 8, /* nstack */ + 3, /* argc */ + 2, /* varg */ + 0, /* has upvals */ + NULL, /* no upvals */ + 0, /* has sup protos */ + NULL, /* no sub protos */ + 1, /* has constants */ + ( &(const bvalue[ 3]) { /* constants */ + /* K0 */ be_const_int(2), + /* K1 */ be_nested_str(write_bit), + /* K2 */ be_const_int(3), + }), + &be_const_str_set_ldo_enable, + &be_const_str_solidified, + ( &(const binstruction[15]) { /* code */ + 0x1C0C0300, // 0000 EQ R3 R1 K0 + 0x780E0004, // 0001 JMPF R3 #0007 + 0x8C0C0101, // 0002 GETMET R3 R0 K1 + 0x54160011, // 0003 LDINT R5 18 + 0x58180000, // 0004 LDCONST R6 K0 + 0x5C1C0400, // 0005 MOVE R7 R2 + 0x7C0C0800, // 0006 CALL R3 4 + 0x1C0C0302, // 0007 EQ R3 R1 K2 + 0x780E0004, // 0008 JMPF R3 #000E + 0x8C0C0101, // 0009 GETMET R3 R0 K1 + 0x54160011, // 000A LDINT R5 18 + 0x58180002, // 000B LDCONST R6 K2 + 0x5C1C0400, // 000C MOVE R7 R2 + 0x7C0C0800, // 000D CALL R3 4 + 0x80000000, // 000E RET 0 + }) + ) +); +/*******************************************************************/ + + /******************************************************************** ** Solidified function: web_sensor ********************************************************************/ @@ -698,7 +552,7 @@ be_local_closure(AXP192_web_sensor, /* name */ be_nested_proto( 11, /* nstack */ 1, /* argc */ - 0, /* varg */ + 2, /* varg */ 0, /* has upvals */ NULL, /* no upvals */ 0, /* has sup protos */ @@ -756,27 +610,27 @@ be_local_closure(AXP192_web_sensor, /* name */ /******************************************************************** -** Solidified function: get_bat_charge_current +** Solidified function: get_vbus_voltage ********************************************************************/ -be_local_closure(AXP192_get_bat_charge_current, /* name */ +be_local_closure(AXP192_get_vbus_voltage, /* name */ be_nested_proto( 4, /* nstack */ 1, /* argc */ - 0, /* varg */ + 2, /* varg */ 0, /* has upvals */ NULL, /* no upvals */ 0, /* has sup protos */ NULL, /* no sub protos */ 1, /* has constants */ ( &(const bvalue[ 2]) { /* constants */ - /* K0 */ be_nested_str(read13), - /* K1 */ be_const_real_hex(0x3F000000), + /* K0 */ be_nested_str(read12), + /* K1 */ be_const_real_hex(0x3ADED28A), }), - &be_const_str_get_bat_charge_current, + &be_const_str_get_vbus_voltage, &be_const_str_solidified, ( &(const binstruction[ 5]) { /* code */ 0x8C040100, // 0000 GETMET R1 R0 K0 - 0x540E0079, // 0001 LDINT R3 122 + 0x540E0059, // 0001 LDINT R3 90 0x7C040400, // 0002 CALL R1 2 0x08040301, // 0003 MUL R1 R1 K1 0x80040200, // 0004 RET 1 R1 @@ -787,34 +641,32 @@ be_local_closure(AXP192_get_bat_charge_current, /* name */ /******************************************************************** -** Solidified function: get_battery_chargin_status +** Solidified function: get_temp ********************************************************************/ -be_local_closure(AXP192_get_battery_chargin_status, /* name */ +be_local_closure(AXP192_get_temp, /* name */ be_nested_proto( - 6, /* nstack */ + 4, /* nstack */ 1, /* argc */ - 0, /* varg */ + 2, /* varg */ 0, /* has upvals */ NULL, /* no upvals */ 0, /* has sup protos */ NULL, /* no sub protos */ 1, /* has constants */ - ( &(const bvalue[ 4]) { /* constants */ - /* K0 */ be_nested_str(wire), - /* K1 */ be_nested_str(read), - /* K2 */ be_nested_str(addr), - /* K3 */ be_const_int(1), + ( &(const bvalue[ 3]) { /* constants */ + /* K0 */ be_nested_str(read12), + /* K1 */ be_const_real_hex(0x3DCCCCCD), + /* K2 */ be_const_real_hex(0x4310B333), }), - &be_const_str_get_battery_chargin_status, + &be_const_str_get_temp, &be_const_str_solidified, - ( &(const binstruction[ 7]) { /* code */ - 0x88040100, // 0000 GETMBR R1 R0 K0 - 0x8C040301, // 0001 GETMET R1 R1 K1 - 0x880C0102, // 0002 GETMBR R3 R0 K2 - 0x58100003, // 0003 LDCONST R4 K3 - 0x58140003, // 0004 LDCONST R5 K3 - 0x7C040800, // 0005 CALL R1 4 - 0x80040200, // 0006 RET 1 R1 + ( &(const binstruction[ 6]) { /* code */ + 0x8C040100, // 0000 GETMET R1 R0 K0 + 0x540E005D, // 0001 LDINT R3 94 + 0x7C040400, // 0002 CALL R1 2 + 0x08040301, // 0003 MUL R1 R1 K1 + 0x04040302, // 0004 SUB R1 R1 K2 + 0x80040200, // 0005 RET 1 R1 }) ) ); @@ -822,35 +674,214 @@ be_local_closure(AXP192_get_battery_chargin_status, /* name */ /******************************************************************** -** Solidified function: get_input_power_status +** Solidified function: get_bat_power ********************************************************************/ -be_local_closure(AXP192_get_input_power_status, /* name */ +be_local_closure(AXP192_get_bat_power, /* name */ be_nested_proto( - 6, /* nstack */ + 4, /* nstack */ 1, /* argc */ - 0, /* varg */ + 2, /* varg */ + 0, /* has upvals */ + NULL, /* no upvals */ + 0, /* has sup protos */ + NULL, /* no sub protos */ + 1, /* has constants */ + ( &(const bvalue[ 2]) { /* constants */ + /* K0 */ be_nested_str(read24), + /* K1 */ be_const_real_hex(0x3A102DE1), + }), + &be_const_str_get_bat_power, + &be_const_str_solidified, + ( &(const binstruction[ 5]) { /* code */ + 0x8C040100, // 0000 GETMET R1 R0 K0 + 0x540E006F, // 0001 LDINT R3 112 + 0x7C040400, // 0002 CALL R1 2 + 0x08040301, // 0003 MUL R1 R1 K1 + 0x80040200, // 0004 RET 1 R1 + }) + ) +); +/*******************************************************************/ + + +/******************************************************************** +** Solidified function: set_dcdc_enable +********************************************************************/ +be_local_closure(AXP192_set_dcdc_enable, /* name */ + be_nested_proto( + 8, /* nstack */ + 3, /* argc */ + 2, /* varg */ 0, /* has upvals */ NULL, /* no upvals */ 0, /* has sup protos */ NULL, /* no sub protos */ 1, /* has constants */ ( &(const bvalue[ 5]) { /* constants */ - /* K0 */ be_nested_str(wire), - /* K1 */ be_nested_str(read), - /* K2 */ be_nested_str(addr), - /* K3 */ be_const_int(0), - /* K4 */ be_const_int(1), + /* K0 */ be_const_int(1), + /* K1 */ be_nested_str(write_bit), + /* K2 */ be_const_int(0), + /* K3 */ be_const_int(2), + /* K4 */ be_const_int(3), }), - &be_const_str_get_input_power_status, + &be_const_str_set_dcdc_enable, &be_const_str_solidified, - ( &(const binstruction[ 7]) { /* code */ - 0x88040100, // 0000 GETMBR R1 R0 K0 - 0x8C040301, // 0001 GETMET R1 R1 K1 - 0x880C0102, // 0002 GETMBR R3 R0 K2 - 0x58100003, // 0003 LDCONST R4 K3 - 0x58140004, // 0004 LDCONST R5 K4 - 0x7C040800, // 0005 CALL R1 4 - 0x80040200, // 0006 RET 1 R1 + ( &(const binstruction[22]) { /* code */ + 0x1C0C0300, // 0000 EQ R3 R1 K0 + 0x780E0004, // 0001 JMPF R3 #0007 + 0x8C0C0101, // 0002 GETMET R3 R0 K1 + 0x54160011, // 0003 LDINT R5 18 + 0x58180002, // 0004 LDCONST R6 K2 + 0x5C1C0400, // 0005 MOVE R7 R2 + 0x7C0C0800, // 0006 CALL R3 4 + 0x1C0C0303, // 0007 EQ R3 R1 K3 + 0x780E0004, // 0008 JMPF R3 #000E + 0x8C0C0101, // 0009 GETMET R3 R0 K1 + 0x54160011, // 000A LDINT R5 18 + 0x541A0003, // 000B LDINT R6 4 + 0x5C1C0400, // 000C MOVE R7 R2 + 0x7C0C0800, // 000D CALL R3 4 + 0x1C0C0304, // 000E EQ R3 R1 K4 + 0x780E0004, // 000F JMPF R3 #0015 + 0x8C0C0101, // 0010 GETMET R3 R0 K1 + 0x54160011, // 0011 LDINT R5 18 + 0x58180000, // 0012 LDCONST R6 K0 + 0x5C1C0400, // 0013 MOVE R7 R2 + 0x7C0C0800, // 0014 CALL R3 4 + 0x80000000, // 0015 RET 0 + }) + ) +); +/*******************************************************************/ + + +/******************************************************************** +** Solidified function: get_aps_voltage +********************************************************************/ +be_local_closure(AXP192_get_aps_voltage, /* name */ + be_nested_proto( + 4, /* nstack */ + 1, /* argc */ + 2, /* varg */ + 0, /* has upvals */ + NULL, /* no upvals */ + 0, /* has sup protos */ + NULL, /* no sub protos */ + 1, /* has constants */ + ( &(const bvalue[ 2]) { /* constants */ + /* K0 */ be_nested_str(read12), + /* K1 */ be_const_real_hex(0x3AB78035), + }), + &be_const_str_get_aps_voltage, + &be_const_str_solidified, + ( &(const binstruction[ 5]) { /* code */ + 0x8C040100, // 0000 GETMET R1 R0 K0 + 0x540E007D, // 0001 LDINT R3 126 + 0x7C040400, // 0002 CALL R1 2 + 0x08040301, // 0003 MUL R1 R1 K1 + 0x80040200, // 0004 RET 1 R1 + }) + ) +); +/*******************************************************************/ + + +/******************************************************************** +** Solidified function: set_ldo_voltage +********************************************************************/ +be_local_closure(AXP192_set_ldo_voltage, /* name */ + be_nested_proto( + 9, /* nstack */ + 3, /* argc */ + 2, /* varg */ + 0, /* has upvals */ + NULL, /* no upvals */ + 0, /* has sup protos */ + NULL, /* no sub protos */ + 1, /* has constants */ + ( &(const bvalue[ 4]) { /* constants */ + /* K0 */ be_const_int(2), + /* K1 */ be_nested_str(write8), + /* K2 */ be_nested_str(read8), + /* K3 */ be_const_int(3), + }), + &be_const_str_set_ldo_voltage, + &be_const_str_solidified, + ( &(const binstruction[39]) { /* code */ + 0x540E0CE3, // 0000 LDINT R3 3300 + 0x240C0403, // 0001 GT R3 R2 R3 + 0x780E0001, // 0002 JMPF R3 #0005 + 0x540A000E, // 0003 LDINT R2 15 + 0x70020004, // 0004 JMP #000A + 0x540E0063, // 0005 LDINT R3 100 + 0x0C0C0403, // 0006 DIV R3 R2 R3 + 0x54120011, // 0007 LDINT R4 18 + 0x040C0604, // 0008 SUB R3 R3 R4 + 0x5C080600, // 0009 MOVE R2 R3 + 0x1C0C0300, // 000A EQ R3 R1 K0 + 0x780E000C, // 000B JMPF R3 #0019 + 0x8C0C0101, // 000C GETMET R3 R0 K1 + 0x54160027, // 000D LDINT R5 40 + 0x8C180102, // 000E GETMET R6 R0 K2 + 0x54220027, // 000F LDINT R8 40 + 0x7C180400, // 0010 CALL R6 2 + 0x541E000E, // 0011 LDINT R7 15 + 0x2C180C07, // 0012 AND R6 R6 R7 + 0x541E000E, // 0013 LDINT R7 15 + 0x2C1C0407, // 0014 AND R7 R2 R7 + 0x54220003, // 0015 LDINT R8 4 + 0x381C0E08, // 0016 SHL R7 R7 R8 + 0x30180C07, // 0017 OR R6 R6 R7 + 0x7C0C0600, // 0018 CALL R3 3 + 0x1C0C0303, // 0019 EQ R3 R1 K3 + 0x780E000A, // 001A JMPF R3 #0026 + 0x8C0C0101, // 001B GETMET R3 R0 K1 + 0x54160027, // 001C LDINT R5 40 + 0x8C180102, // 001D GETMET R6 R0 K2 + 0x54220027, // 001E LDINT R8 40 + 0x7C180400, // 001F CALL R6 2 + 0x541E00EF, // 0020 LDINT R7 240 + 0x2C180C07, // 0021 AND R6 R6 R7 + 0x541E000E, // 0022 LDINT R7 15 + 0x2C1C0407, // 0023 AND R7 R2 R7 + 0x30180C07, // 0024 OR R6 R6 R7 + 0x7C0C0600, // 0025 CALL R3 3 + 0x80000000, // 0026 RET 0 + }) + ) +); +/*******************************************************************/ + + +/******************************************************************** +** Solidified function: get_bat_current +********************************************************************/ +be_local_closure(AXP192_get_bat_current, /* name */ + be_nested_proto( + 5, /* nstack */ + 1, /* argc */ + 2, /* varg */ + 0, /* has upvals */ + NULL, /* no upvals */ + 0, /* has sup protos */ + NULL, /* no sub protos */ + 1, /* has constants */ + ( &(const bvalue[ 2]) { /* constants */ + /* K0 */ be_nested_str(read13), + /* K1 */ be_const_real_hex(0x3F000000), + }), + &be_const_str_get_bat_current, + &be_const_str_solidified, + ( &(const binstruction[ 9]) { /* code */ + 0x8C040100, // 0000 GETMET R1 R0 K0 + 0x540E0079, // 0001 LDINT R3 122 + 0x7C040400, // 0002 CALL R1 2 + 0x8C080100, // 0003 GETMET R2 R0 K0 + 0x5412007B, // 0004 LDINT R4 124 + 0x7C080400, // 0005 CALL R2 2 + 0x04040202, // 0006 SUB R1 R1 R2 + 0x08040301, // 0007 MUL R1 R1 K1 + 0x80040200, // 0008 RET 1 R1 }) ) ); @@ -864,29 +895,30 @@ extern const bclass be_class_I2C_Driver; be_local_class(AXP192, 0, &be_class_I2C_Driver, - be_nested_map(21, + be_nested_map(22, ( (struct bmapnode*) &(const bmapnode[]) { - { be_const_key(get_warning_level, -1), be_const_closure(AXP192_get_warning_level_closure) }, - { be_const_key(get_vbus_current, -1), be_const_closure(AXP192_get_vbus_current_closure) }, - { be_const_key(get_aps_voltage, -1), be_const_closure(AXP192_get_aps_voltage_closure) }, + { be_const_key(json_append, 10), be_const_closure(AXP192_json_append_closure) }, { be_const_key(get_bat_current, -1), be_const_closure(AXP192_get_bat_current_closure) }, - { be_const_key(get_bat_power, 2), be_const_closure(AXP192_get_bat_power_closure) }, - { be_const_key(json_append, -1), be_const_closure(AXP192_json_append_closure) }, - { be_const_key(get_vbus_voltage, -1), be_const_closure(AXP192_get_vbus_voltage_closure) }, - { be_const_key(get_battery_chargin_status, 9), be_const_closure(AXP192_get_battery_chargin_status_closure) }, - { be_const_key(battery_present, -1), be_const_closure(AXP192_battery_present_closure) }, - { be_const_key(get_bat_charge_current, 14), be_const_closure(AXP192_get_bat_charge_current_closure) }, - { be_const_key(set_dcdc_enable, -1), be_const_closure(AXP192_set_dcdc_enable_closure) }, - { be_const_key(get_temp, 19), be_const_closure(AXP192_get_temp_closure) }, - { be_const_key(set_chg_current, 13), be_const_closure(AXP192_set_chg_current_closure) }, - { be_const_key(set_ldo_enable, 18), be_const_closure(AXP192_set_ldo_enable_closure) }, - { be_const_key(set_dc_voltage, -1), be_const_closure(AXP192_set_dc_voltage_closure) }, - { be_const_key(get_bat_voltage, 7), be_const_closure(AXP192_get_bat_voltage_closure) }, - { be_const_key(write_gpio, -1), be_const_closure(AXP192_write_gpio_closure) }, - { be_const_key(web_sensor, -1), be_const_closure(AXP192_web_sensor_closure) }, - { be_const_key(init, -1), be_const_closure(AXP192_init_closure) }, + { be_const_key(set_dc_voltage, 16), be_const_closure(AXP192_set_dc_voltage_closure) }, { be_const_key(set_ldo_voltage, -1), be_const_closure(AXP192_set_ldo_voltage_closure) }, + { be_const_key(battery_present, -1), be_const_closure(AXP192_battery_present_closure) }, + { be_const_key(write_gpio, -1), be_const_closure(AXP192_write_gpio_closure) }, + { be_const_key(set_dcdc_enable, 21), be_const_closure(AXP192_set_dcdc_enable_closure) }, { be_const_key(get_input_power_status, -1), be_const_closure(AXP192_get_input_power_status_closure) }, + { be_const_key(get_bat_power, -1), be_const_closure(AXP192_get_bat_power_closure) }, + { be_const_key(init, 1), be_const_closure(AXP192_init_closure) }, + { be_const_key(get_temp, 17), be_const_closure(AXP192_get_temp_closure) }, + { be_const_key(get_battery_chargin_status, -1), be_const_closure(AXP192_get_battery_chargin_status_closure) }, + { be_const_key(set_ldo_enable, -1), be_const_closure(AXP192_set_ldo_enable_closure) }, + { be_const_key(get_warning_level, 12), be_const_closure(AXP192_get_warning_level_closure) }, + { be_const_key(web_sensor, -1), be_const_closure(AXP192_web_sensor_closure) }, + { be_const_key(get_vbus_voltage, 8), be_const_closure(AXP192_get_vbus_voltage_closure) }, + { be_const_key(set_exten, -1), be_const_closure(AXP192_set_exten_closure) }, + { be_const_key(set_chg_current, 5), be_const_closure(AXP192_set_chg_current_closure) }, + { be_const_key(get_vbus_current, 6), be_const_closure(AXP192_get_vbus_current_closure) }, + { be_const_key(get_aps_voltage, -1), be_const_closure(AXP192_get_aps_voltage_closure) }, + { be_const_key(get_bat_charge_current, 3), be_const_closure(AXP192_get_bat_charge_current_closure) }, + { be_const_key(get_bat_voltage, -1), be_const_closure(AXP192_get_bat_voltage_closure) }, })), be_str_literal("AXP192") ); diff --git a/lib/libesp32/berry_tasmota/src/be_i2s_audio_lib.cpp b/lib/libesp32/berry_tasmota/src/be_i2s_audio_lib.cpp index 0b0d08919..16d7508c4 100644 --- a/lib/libesp32/berry_tasmota/src/be_i2s_audio_lib.cpp +++ b/lib/libesp32/berry_tasmota/src/be_i2s_audio_lib.cpp @@ -147,6 +147,8 @@ int32_t be_audio_output_consume_silence(struct bvm *vm) { return be_call_c_func(vm, (void*) &be_audio_output_consume_silence_ntv, "i", "."); } +#include "AudioOutputI2S.h" + extern "C" { #include "be_fixed_be_class_audio_output.h" @@ -211,6 +213,10 @@ class be_class_audio_file_source (scope: global, name: AudioFileSource) { } class be_class_audio_output_i2s (scope: global, name: AudioOutputI2S, super: be_class_audio_output) { + EXTERNAL_I2S, int(AudioOutputI2S::EXTERNAL_I2S) + INTERNAL_DAC, int(AudioOutputI2S::INTERNAL_DAC) + INTERNAL_PDM, int(AudioOutputI2S::INTERNAL_PDM) + init, func(i2s_output_i2s_init) deinit, func(i2s_output_i2s_deinit) stop, func(i2s_output_i2s_stop) diff --git a/lib/libesp32/berry_tasmota/src/be_uuid_lib.c b/lib/libesp32/berry_tasmota/src/be_uuid_lib.c new file mode 100644 index 000000000..8a6268c5a --- /dev/null +++ b/lib/libesp32/berry_tasmota/src/be_uuid_lib.c @@ -0,0 +1,77 @@ +/******************************************************************** + * uuid module + * + *******************************************************************/ +#include "be_constobj.h" + +/******************************************************************** +** Solidified function: _anonymous_ +********************************************************************/ +be_local_closure(uuid__anonymous_, /* name */ + be_nested_proto( + 12, /* nstack */ + 0, /* argc */ + 0, /* varg */ + 0, /* has upvals */ + NULL, /* no upvals */ + 0, /* has sup protos */ + NULL, /* no sub protos */ + 1, /* has constants */ + ( &(const bvalue[ 5]) { /* constants */ + /* K0 */ be_nested_str(string), + /* K1 */ be_nested_str(math), + /* K2 */ be_nested_str(format), + /* K3 */ be_nested_str(_X2508x_X2D_X2504x_X2D_X2504x_X2D_X2504x_X2D_X2504x_X2508x), + /* K4 */ be_nested_str(rand), + }), + &be_const_str__anonymous_, + &be_const_str_solidified, + ( &(const binstruction[30]) { /* code */ + 0xA4020000, // 0000 IMPORT R0 K0 + 0xA4060200, // 0001 IMPORT R1 K1 + 0x8C080102, // 0002 GETMET R2 R0 K2 + 0x58100003, // 0003 LDCONST R4 K3 + 0x8C140304, // 0004 GETMET R5 R1 K4 + 0x7C140200, // 0005 CALL R5 1 + 0x8C180304, // 0006 GETMET R6 R1 K4 + 0x7C180200, // 0007 CALL R6 1 + 0x541EFFFE, // 0008 LDINT R7 65535 + 0x2C180C07, // 0009 AND R6 R6 R7 + 0x8C1C0304, // 000A GETMET R7 R1 K4 + 0x7C1C0200, // 000B CALL R7 1 + 0x54220FFE, // 000C LDINT R8 4095 + 0x2C1C0E08, // 000D AND R7 R7 R8 + 0x54223FFF, // 000E LDINT R8 16384 + 0x301C0E08, // 000F OR R7 R7 R8 + 0x8C200304, // 0010 GETMET R8 R1 K4 + 0x7C200200, // 0011 CALL R8 1 + 0x54263FFE, // 0012 LDINT R9 16383 + 0x2C201009, // 0013 AND R8 R8 R9 + 0x54267FFF, // 0014 LDINT R9 32768 + 0x30201009, // 0015 OR R8 R8 R9 + 0x8C240304, // 0016 GETMET R9 R1 K4 + 0x7C240200, // 0017 CALL R9 1 + 0x542AFFFE, // 0018 LDINT R10 65535 + 0x2C24120A, // 0019 AND R9 R9 R10 + 0x8C280304, // 001A GETMET R10 R1 K4 + 0x7C280200, // 001B CALL R10 1 + 0x7C081000, // 001C CALL R2 8 + 0x80040400, // 001D RET 1 R2 + }) + ) +); +/*******************************************************************/ + + +/******************************************************************** +** Solidified module: uuid +********************************************************************/ +be_local_module(uuid, + "uuid", + be_nested_map(1, + ( (struct bmapnode*) &(const bmapnode[]) { + { be_const_key(uuid4, -1), be_const_closure(uuid__anonymous__closure) }, + })) +); +BE_EXPORT_VARIABLE be_define_const_native_module(uuid); +/********************************************************************/ diff --git a/lib/libesp32/berry_tasmota/src/embedded/autoconf.be b/lib/libesp32/berry_tasmota/src/embedded/autoconf.be index f76fde271..18eb17015 100644 --- a/lib/libesp32/berry_tasmota/src/embedded/autoconf.be +++ b/lib/libesp32/berry_tasmota/src/embedded/autoconf.be @@ -141,7 +141,7 @@ autoconf_module.init = def (m) # Displays a "Autocong" button on the configuration page def web_add_config_button() import webserver - webserver.content_send("

") + webserver.content_send("

") end diff --git a/lib/libesp32/berry_tasmota/src/embedded/i2c_axp192.be b/lib/libesp32/berry_tasmota/src/embedded/i2c_axp192.be index d762b0363..5b8cae51f 100644 --- a/lib/libesp32/berry_tasmota/src/embedded/i2c_axp192.be +++ b/lib/libesp32/berry_tasmota/src/embedded/i2c_axp192.be @@ -67,6 +67,11 @@ class AXP192 : I2C_Driver end end + # set EXTEN which enables external power on M5Stack, powering Hat with 5V + def set_exten(state) + self.write_bit(0x12, 6, state) + end + # set DCDC enable, 1/2/3 def set_dcdc_enable(dcdc, state) if dcdc == 1 self.write_bit(0x12, 0, state) end diff --git a/lib/libesp32/berry_tasmota/src/embedded/uuid.be b/lib/libesp32/berry_tasmota/src/embedded/uuid.be new file mode 100644 index 000000000..613632147 --- /dev/null +++ b/lib/libesp32/berry_tasmota/src/embedded/uuid.be @@ -0,0 +1,15 @@ + +uuid = module("uuid") +uuid.uuid4 = def () + import string + import math + return string.format("%08x-%04x-%04x-%04x-%04x%08x", + math.rand(), + math.rand() & 0xFFFF, + math.rand() & 0x0FFF | 0x4000, + math.rand() & 0x3FFF | 0x8000, + math.rand() & 0xFFFF, + math.rand() ) +end + +return uuid diff --git a/lib/libesp32_div/NimBLE-Arduino/src/log_common/log_common.h b/lib/libesp32_div/NimBLE-Arduino/src/log_common/log_common.h index f13a61ad9..466d0d618 100644 --- a/lib/libesp32_div/NimBLE-Arduino/src/log_common/log_common.h +++ b/lib/libesp32_div/NimBLE-Arduino/src/log_common/log_common.h @@ -26,12 +26,21 @@ extern "C" { #endif +/* #define LOG_LEVEL_DEBUG (0) #define LOG_LEVEL_INFO (1) #define LOG_LEVEL_WARN (2) #define LOG_LEVEL_ERROR (3) #define LOG_LEVEL_CRITICAL (4) #define LOG_LEVEL_NONE (5) +*/ +#define LOG_LEVEL_DEBUG (3) +#define LOG_LEVEL_INFO (2) +#define LOG_LEVEL_WARN (4) +#define LOG_LEVEL_ERROR (1) +#define LOG_LEVEL_CRITICAL (5) +#define LOG_LEVEL_NONE (0) + /* Up to 7 custom log levels. */ #define LOG_LEVEL_MAX (15) diff --git a/lib/libesp32_div/NimBLE-Arduino/tasmota_lib_changes.md b/lib/libesp32_div/NimBLE-Arduino/tasmota_lib_changes.md new file mode 100644 index 000000000..e273775b7 --- /dev/null +++ b/lib/libesp32_div/NimBLE-Arduino/tasmota_lib_changes.md @@ -0,0 +1,2 @@ +Attention when updating library. Changes in lib needed!! +See https://github.com/arendst/Tasmota/commit/497d8218f9f92d9db4664fa519bbafbf78711db7 diff --git a/lib/libesp32_lvgl/Adafruit_LvGL_Glue-shadinger/Doxyfile b/lib/libesp32_lvgl/Adafruit_LvGL_Glue-shadinger/Doxyfile deleted file mode 100755 index 8f105aa52..000000000 --- a/lib/libesp32_lvgl/Adafruit_LvGL_Glue-shadinger/Doxyfile +++ /dev/null @@ -1,2458 +0,0 @@ -# Doxyfile 1.8.13 - -# This file describes the settings to be used by the documentation system -# doxygen (www.doxygen.org) for a project. -# -# All text after a double hash (##) is considered a comment and is placed in -# front of the TAG it is preceding. -# -# All text after a single hash (#) is considered a comment and will be ignored. -# The format is: -# TAG = value [value, ...] -# For lists, items can also be appended using: -# TAG += value [value, ...] -# Values that contain spaces should be placed between quotes (\" \"). - -#--------------------------------------------------------------------------- -# Project related configuration options -#--------------------------------------------------------------------------- - -# This tag specifies the encoding used for all characters in the config file -# that follow. The default is UTF-8 which is also the encoding used for all text -# before the first occurrence of this tag. Doxygen uses libiconv (or the iconv -# built into libc) for the transcoding. See http://www.gnu.org/software/libiconv -# for the list of possible encodings. -# The default value is: UTF-8. - -DOXYFILE_ENCODING = UTF-8 - -# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by -# double-quotes, unless you are using Doxywizard) that should identify the -# project for which the documentation is generated. This name is used in the -# title of most generated pages and in a few other places. -# The default value is: My Project. - -PROJECT_NAME = "Adafruit lvgl Glue Library" - -# The PROJECT_NUMBER tag can be used to enter a project or revision number. This -# could be handy for archiving the generated documentation or if some version -# control system is used. - -PROJECT_NUMBER = - -# Using the PROJECT_BRIEF tag one can provide an optional one line description -# for a project that appears at the top of each page and should give viewer a -# quick idea about the purpose of the project. Keep the description short. - -PROJECT_BRIEF = - -# With the PROJECT_LOGO tag one can specify a logo or an icon that is included -# in the documentation. The maximum height of the logo should not exceed 55 -# pixels and the maximum width should not exceed 200 pixels. Doxygen will copy -# the logo to the output directory. - -PROJECT_LOGO = - -# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path -# into which the generated documentation will be written. If a relative path is -# entered, it will be relative to the location where doxygen was started. If -# left blank the current directory will be used. - -OUTPUT_DIRECTORY = - -# If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub- -# directories (in 2 levels) under the output directory of each output format and -# will distribute the generated files over these directories. Enabling this -# option can be useful when feeding doxygen a huge amount of source files, where -# putting all generated files in the same directory would otherwise causes -# performance problems for the file system. -# The default value is: NO. - -CREATE_SUBDIRS = NO - -# If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII -# characters to appear in the names of generated files. If set to NO, non-ASCII -# characters will be escaped, for example _xE3_x81_x84 will be used for Unicode -# U+3044. -# The default value is: NO. - -ALLOW_UNICODE_NAMES = NO - -# The OUTPUT_LANGUAGE tag is used to specify the language in which all -# documentation generated by doxygen is written. Doxygen will use this -# information to generate all constant output in the proper language. -# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese, -# Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), -# Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian, -# Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), -# Korean, Korean-en (Korean with English messages), Latvian, Lithuanian, -# Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian, -# Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish, -# Ukrainian and Vietnamese. -# The default value is: English. - -OUTPUT_LANGUAGE = English - -# If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member -# descriptions after the members that are listed in the file and class -# documentation (similar to Javadoc). Set to NO to disable this. -# The default value is: YES. - -BRIEF_MEMBER_DESC = YES - -# If the REPEAT_BRIEF tag is set to YES, doxygen will prepend the brief -# description of a member or function before the detailed description -# -# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the -# brief descriptions will be completely suppressed. -# The default value is: YES. - -REPEAT_BRIEF = YES - -# This tag implements a quasi-intelligent brief description abbreviator that is -# used to form the text in various listings. Each string in this list, if found -# as the leading text of the brief description, will be stripped from the text -# and the result, after processing the whole list, is used as the annotated -# text. Otherwise, the brief description is used as-is. If left blank, the -# following values are used ($name is automatically replaced with the name of -# the entity):The $name class, The $name widget, The $name file, is, provides, -# specifies, contains, represents, a, an and the. - -ABBREVIATE_BRIEF = "The $name class" \ - "The $name widget" \ - "The $name file" \ - is \ - provides \ - specifies \ - contains \ - represents \ - a \ - an \ - the - -# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then -# doxygen will generate a detailed section even if there is only a brief -# description. -# The default value is: NO. - -ALWAYS_DETAILED_SEC = NO - -# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all -# inherited members of a class in the documentation of that class as if those -# members were ordinary class members. Constructors, destructors and assignment -# operators of the base classes will not be shown. -# The default value is: NO. - -INLINE_INHERITED_MEMB = NO - -# If the FULL_PATH_NAMES tag is set to YES, doxygen will prepend the full path -# before files name in the file list and in the header files. If set to NO the -# shortest path that makes the file name unique will be used -# The default value is: YES. - -FULL_PATH_NAMES = YES - -# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path. -# Stripping is only done if one of the specified strings matches the left-hand -# part of the path. The tag can be used to show relative paths in the file list. -# If left blank the directory from which doxygen is run is used as the path to -# strip. -# -# Note that you can specify absolute paths here, but also relative paths, which -# will be relative from the directory where doxygen is started. -# This tag requires that the tag FULL_PATH_NAMES is set to YES. - -STRIP_FROM_PATH = - -# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the -# path mentioned in the documentation of a class, which tells the reader which -# header file to include in order to use a class. If left blank only the name of -# the header file containing the class definition is used. Otherwise one should -# specify the list of include paths that are normally passed to the compiler -# using the -I flag. - -STRIP_FROM_INC_PATH = - -# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but -# less readable) file names. This can be useful is your file systems doesn't -# support long names like on DOS, Mac, or CD-ROM. -# The default value is: NO. - -SHORT_NAMES = NO - -# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the -# first line (until the first dot) of a Javadoc-style comment as the brief -# description. If set to NO, the Javadoc-style will behave just like regular Qt- -# style comments (thus requiring an explicit @brief command for a brief -# description.) -# The default value is: NO. - -JAVADOC_AUTOBRIEF = NO - -# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first -# line (until the first dot) of a Qt-style comment as the brief description. If -# set to NO, the Qt-style will behave just like regular Qt-style comments (thus -# requiring an explicit \brief command for a brief description.) -# The default value is: NO. - -QT_AUTOBRIEF = NO - -# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a -# multi-line C++ special comment block (i.e. a block of //! or /// comments) as -# a brief description. This used to be the default behavior. The new default is -# to treat a multi-line C++ comment block as a detailed description. Set this -# tag to YES if you prefer the old behavior instead. -# -# Note that setting this tag to YES also means that rational rose comments are -# not recognized any more. -# The default value is: NO. - -MULTILINE_CPP_IS_BRIEF = NO - -# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the -# documentation from any documented member that it re-implements. -# The default value is: YES. - -INHERIT_DOCS = YES - -# If the SEPARATE_MEMBER_PAGES tag is set to YES then doxygen will produce a new -# page for each member. If set to NO, the documentation of a member will be part -# of the file/class/namespace that contains it. -# The default value is: NO. - -SEPARATE_MEMBER_PAGES = NO - -# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen -# uses this value to replace tabs by spaces in code fragments. -# Minimum value: 1, maximum value: 16, default value: 4. - -TAB_SIZE = 4 - -# This tag can be used to specify a number of aliases that act as commands in -# the documentation. An alias has the form: -# name=value -# For example adding -# "sideeffect=@par Side Effects:\n" -# will allow you to put the command \sideeffect (or @sideeffect) in the -# documentation, which will result in a user-defined paragraph with heading -# "Side Effects:". You can put \n's in the value part of an alias to insert -# newlines. - -ALIASES = - -# This tag can be used to specify a number of word-keyword mappings (TCL only). -# A mapping has the form "name=value". For example adding "class=itcl::class" -# will allow you to use the command class in the itcl::class meaning. - -TCL_SUBST = - -# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources -# only. Doxygen will then generate output that is more tailored for C. For -# instance, some of the names that are used will be different. The list of all -# members will be omitted, etc. -# The default value is: NO. - -OPTIMIZE_OUTPUT_FOR_C = NO - -# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or -# Python sources only. Doxygen will then generate output that is more tailored -# for that language. For instance, namespaces will be presented as packages, -# qualified scopes will look different, etc. -# The default value is: NO. - -OPTIMIZE_OUTPUT_JAVA = NO - -# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran -# sources. Doxygen will then generate output that is tailored for Fortran. -# The default value is: NO. - -OPTIMIZE_FOR_FORTRAN = NO - -# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL -# sources. Doxygen will then generate output that is tailored for VHDL. -# The default value is: NO. - -OPTIMIZE_OUTPUT_VHDL = NO - -# Doxygen selects the parser to use depending on the extension of the files it -# parses. With this tag you can assign which parser to use for a given -# extension. Doxygen has a built-in mapping, but you can override or extend it -# using this tag. The format is ext=language, where ext is a file extension, and -# language is one of the parsers supported by doxygen: IDL, Java, Javascript, -# C#, C, C++, D, PHP, Objective-C, Python, Fortran (fixed format Fortran: -# FortranFixed, free formatted Fortran: FortranFree, unknown formatted Fortran: -# Fortran. In the later case the parser tries to guess whether the code is fixed -# or free formatted code, this is the default for Fortran type files), VHDL. For -# instance to make doxygen treat .inc files as Fortran files (default is PHP), -# and .f files as C (default is Fortran), use: inc=Fortran f=C. -# -# Note: For files without extension you can use no_extension as a placeholder. -# -# Note that for custom extensions you also need to set FILE_PATTERNS otherwise -# the files are not read by doxygen. - -EXTENSION_MAPPING = - -# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments -# according to the Markdown format, which allows for more readable -# documentation. See http://daringfireball.net/projects/markdown/ for details. -# The output of markdown processing is further processed by doxygen, so you can -# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in -# case of backward compatibilities issues. -# The default value is: YES. - -MARKDOWN_SUPPORT = YES - -# When the TOC_INCLUDE_HEADINGS tag is set to a non-zero value, all headings up -# to that level are automatically included in the table of contents, even if -# they do not have an id attribute. -# Note: This feature currently applies only to Markdown headings. -# Minimum value: 0, maximum value: 99, default value: 0. -# This tag requires that the tag MARKDOWN_SUPPORT is set to YES. - -TOC_INCLUDE_HEADINGS = 0 - -# When enabled doxygen tries to link words that correspond to documented -# classes, or namespaces to their corresponding documentation. Such a link can -# be prevented in individual cases by putting a % sign in front of the word or -# globally by setting AUTOLINK_SUPPORT to NO. -# The default value is: YES. - -AUTOLINK_SUPPORT = YES - -# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want -# to include (a tag file for) the STL sources as input, then you should set this -# tag to YES in order to let doxygen match functions declarations and -# definitions whose arguments contain STL classes (e.g. func(std::string); -# versus func(std::string) {}). This also make the inheritance and collaboration -# diagrams that involve STL classes more complete and accurate. -# The default value is: NO. - -BUILTIN_STL_SUPPORT = NO - -# If you use Microsoft's C++/CLI language, you should set this option to YES to -# enable parsing support. -# The default value is: NO. - -CPP_CLI_SUPPORT = NO - -# Set the SIP_SUPPORT tag to YES if your project consists of sip (see: -# http://www.riverbankcomputing.co.uk/software/sip/intro) sources only. Doxygen -# will parse them like normal C++ but will assume all classes use public instead -# of private inheritance when no explicit protection keyword is present. -# The default value is: NO. - -SIP_SUPPORT = NO - -# For Microsoft's IDL there are propget and propput attributes to indicate -# getter and setter methods for a property. Setting this option to YES will make -# doxygen to replace the get and set methods by a property in the documentation. -# This will only work if the methods are indeed getting or setting a simple -# type. If this is not the case, or you want to show the methods anyway, you -# should set this option to NO. -# The default value is: YES. - -IDL_PROPERTY_SUPPORT = YES - -# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC -# tag is set to YES then doxygen will reuse the documentation of the first -# member in the group (if any) for the other members of the group. By default -# all members of a group must be documented explicitly. -# The default value is: NO. - -DISTRIBUTE_GROUP_DOC = NO - -# If one adds a struct or class to a group and this option is enabled, then also -# any nested class or struct is added to the same group. By default this option -# is disabled and one has to add nested compounds explicitly via \ingroup. -# The default value is: NO. - -GROUP_NESTED_COMPOUNDS = NO - -# Set the SUBGROUPING tag to YES to allow class member groups of the same type -# (for instance a group of public functions) to be put as a subgroup of that -# type (e.g. under the Public Functions section). Set it to NO to prevent -# subgrouping. Alternatively, this can be done per class using the -# \nosubgrouping command. -# The default value is: YES. - -SUBGROUPING = YES - -# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions -# are shown inside the group in which they are included (e.g. using \ingroup) -# instead of on a separate page (for HTML and Man pages) or section (for LaTeX -# and RTF). -# -# Note that this feature does not work in combination with -# SEPARATE_MEMBER_PAGES. -# The default value is: NO. - -INLINE_GROUPED_CLASSES = NO - -# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions -# with only public data fields or simple typedef fields will be shown inline in -# the documentation of the scope in which they are defined (i.e. file, -# namespace, or group documentation), provided this scope is documented. If set -# to NO, structs, classes, and unions are shown on a separate page (for HTML and -# Man pages) or section (for LaTeX and RTF). -# The default value is: NO. - -INLINE_SIMPLE_STRUCTS = NO - -# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or -# enum is documented as struct, union, or enum with the name of the typedef. So -# typedef struct TypeS {} TypeT, will appear in the documentation as a struct -# with name TypeT. When disabled the typedef will appear as a member of a file, -# namespace, or class. And the struct will be named TypeS. This can typically be -# useful for C code in case the coding convention dictates that all compound -# types are typedef'ed and only the typedef is referenced, never the tag name. -# The default value is: NO. - -TYPEDEF_HIDES_STRUCT = NO - -# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This -# cache is used to resolve symbols given their name and scope. Since this can be -# an expensive process and often the same symbol appears multiple times in the -# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small -# doxygen will become slower. If the cache is too large, memory is wasted. The -# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range -# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 -# symbols. At the end of a run doxygen will report the cache usage and suggest -# the optimal cache size from a speed point of view. -# Minimum value: 0, maximum value: 9, default value: 0. - -LOOKUP_CACHE_SIZE = 0 - -#--------------------------------------------------------------------------- -# Build related configuration options -#--------------------------------------------------------------------------- - -# If the EXTRACT_ALL tag is set to YES, doxygen will assume all entities in -# documentation are documented, even if no documentation was available. Private -# class members and static file members will be hidden unless the -# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES. -# Note: This will also disable the warnings about undocumented members that are -# normally produced when WARNINGS is set to YES. -# The default value is: NO. - -EXTRACT_ALL = NO - -# If the EXTRACT_PRIVATE tag is set to YES, all private members of a class will -# be included in the documentation. -# The default value is: NO. - -EXTRACT_PRIVATE = NO - -# If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal -# scope will be included in the documentation. -# The default value is: NO. - -EXTRACT_PACKAGE = NO - -# If the EXTRACT_STATIC tag is set to YES, all static members of a file will be -# included in the documentation. -# The default value is: NO. - -EXTRACT_STATIC = NO - -# If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined -# locally in source files will be included in the documentation. If set to NO, -# only classes defined in header files are included. Does not have any effect -# for Java sources. -# The default value is: YES. - -EXTRACT_LOCAL_CLASSES = YES - -# This flag is only useful for Objective-C code. If set to YES, local methods, -# which are defined in the implementation section but not in the interface are -# included in the documentation. If set to NO, only methods in the interface are -# included. -# The default value is: NO. - -EXTRACT_LOCAL_METHODS = NO - -# If this flag is set to YES, the members of anonymous namespaces will be -# extracted and appear in the documentation as a namespace called -# 'anonymous_namespace{file}', where file will be replaced with the base name of -# the file that contains the anonymous namespace. By default anonymous namespace -# are hidden. -# The default value is: NO. - -EXTRACT_ANON_NSPACES = NO - -# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all -# undocumented members inside documented classes or files. If set to NO these -# members will be included in the various overviews, but no documentation -# section is generated. This option has no effect if EXTRACT_ALL is enabled. -# The default value is: NO. - -HIDE_UNDOC_MEMBERS = NO - -# If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all -# undocumented classes that are normally visible in the class hierarchy. If set -# to NO, these classes will be included in the various overviews. This option -# has no effect if EXTRACT_ALL is enabled. -# The default value is: NO. - -HIDE_UNDOC_CLASSES = NO - -# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend -# (class|struct|union) declarations. If set to NO, these declarations will be -# included in the documentation. -# The default value is: NO. - -HIDE_FRIEND_COMPOUNDS = NO - -# If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any -# documentation blocks found inside the body of a function. If set to NO, these -# blocks will be appended to the function's detailed documentation block. -# The default value is: NO. - -HIDE_IN_BODY_DOCS = NO - -# The INTERNAL_DOCS tag determines if documentation that is typed after a -# \internal command is included. If the tag is set to NO then the documentation -# will be excluded. Set it to YES to include the internal documentation. -# The default value is: NO. - -INTERNAL_DOCS = NO - -# If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file -# names in lower-case letters. If set to YES, upper-case letters are also -# allowed. This is useful if you have classes or files whose names only differ -# in case and if your file system supports case sensitive file names. Windows -# and Mac users are advised to set this option to NO. -# The default value is: system dependent. - -CASE_SENSE_NAMES = NO - -# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with -# their full class and namespace scopes in the documentation. If set to YES, the -# scope will be hidden. -# The default value is: NO. - -HIDE_SCOPE_NAMES = NO - -# If the HIDE_COMPOUND_REFERENCE tag is set to NO (default) then doxygen will -# append additional text to a page's title, such as Class Reference. If set to -# YES the compound reference will be hidden. -# The default value is: NO. - -HIDE_COMPOUND_REFERENCE= NO - -# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of -# the files that are included by a file in the documentation of that file. -# The default value is: YES. - -SHOW_INCLUDE_FILES = YES - -# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each -# grouped member an include statement to the documentation, telling the reader -# which file to include in order to use the member. -# The default value is: NO. - -SHOW_GROUPED_MEMB_INC = NO - -# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include -# files with double quotes in the documentation rather than with sharp brackets. -# The default value is: NO. - -FORCE_LOCAL_INCLUDES = NO - -# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the -# documentation for inline members. -# The default value is: YES. - -INLINE_INFO = YES - -# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the -# (detailed) documentation of file and class members alphabetically by member -# name. If set to NO, the members will appear in declaration order. -# The default value is: YES. - -SORT_MEMBER_DOCS = NO - -# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief -# descriptions of file, namespace and class members alphabetically by member -# name. If set to NO, the members will appear in declaration order. Note that -# this will also influence the order of the classes in the class list. -# The default value is: NO. - -SORT_BRIEF_DOCS = NO - -# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the -# (brief and detailed) documentation of class members so that constructors and -# destructors are listed first. If set to NO the constructors will appear in the -# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS. -# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief -# member documentation. -# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting -# detailed member documentation. -# The default value is: NO. - -SORT_MEMBERS_CTORS_1ST = NO - -# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy -# of group names into alphabetical order. If set to NO the group names will -# appear in their defined order. -# The default value is: NO. - -SORT_GROUP_NAMES = NO - -# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by -# fully-qualified names, including namespaces. If set to NO, the class list will -# be sorted only by class name, not including the namespace part. -# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. -# Note: This option applies only to the class list, not to the alphabetical -# list. -# The default value is: NO. - -SORT_BY_SCOPE_NAME = NO - -# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper -# type resolution of all parameters of a function it will reject a match between -# the prototype and the implementation of a member function even if there is -# only one candidate or it is obvious which candidate to choose by doing a -# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still -# accept a match between prototype and implementation in such cases. -# The default value is: NO. - -STRICT_PROTO_MATCHING = NO - -# The GENERATE_TODOLIST tag can be used to enable (YES) or disable (NO) the todo -# list. This list is created by putting \todo commands in the documentation. -# The default value is: YES. - -GENERATE_TODOLIST = YES - -# The GENERATE_TESTLIST tag can be used to enable (YES) or disable (NO) the test -# list. This list is created by putting \test commands in the documentation. -# The default value is: YES. - -GENERATE_TESTLIST = YES - -# The GENERATE_BUGLIST tag can be used to enable (YES) or disable (NO) the bug -# list. This list is created by putting \bug commands in the documentation. -# The default value is: YES. - -GENERATE_BUGLIST = YES - -# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or disable (NO) -# the deprecated list. This list is created by putting \deprecated commands in -# the documentation. -# The default value is: YES. - -GENERATE_DEPRECATEDLIST= YES - -# The ENABLED_SECTIONS tag can be used to enable conditional documentation -# sections, marked by \if ... \endif and \cond -# ... \endcond blocks. - -ENABLED_SECTIONS = - -# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the -# initial value of a variable or macro / define can have for it to appear in the -# documentation. If the initializer consists of more lines than specified here -# it will be hidden. Use a value of 0 to hide initializers completely. The -# appearance of the value of individual variables and macros / defines can be -# controlled using \showinitializer or \hideinitializer command in the -# documentation regardless of this setting. -# Minimum value: 0, maximum value: 10000, default value: 30. - -MAX_INITIALIZER_LINES = 30 - -# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at -# the bottom of the documentation of classes and structs. If set to YES, the -# list will mention the files that were used to generate the documentation. -# The default value is: YES. - -SHOW_USED_FILES = YES - -# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This -# will remove the Files entry from the Quick Index and from the Folder Tree View -# (if specified). -# The default value is: YES. - -SHOW_FILES = YES - -# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces -# page. This will remove the Namespaces entry from the Quick Index and from the -# Folder Tree View (if specified). -# The default value is: YES. - -SHOW_NAMESPACES = YES - -# The FILE_VERSION_FILTER tag can be used to specify a program or script that -# doxygen should invoke to get the current version for each file (typically from -# the version control system). Doxygen will invoke the program by executing (via -# popen()) the command command input-file, where command is the value of the -# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided -# by doxygen. Whatever the program writes to standard output is used as the file -# version. For an example see the documentation. - -FILE_VERSION_FILTER = - -# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed -# by doxygen. The layout file controls the global structure of the generated -# output files in an output format independent way. To create the layout file -# that represents doxygen's defaults, run doxygen with the -l option. You can -# optionally specify a file name after the option, if omitted DoxygenLayout.xml -# will be used as the name of the layout file. -# -# Note that if you run doxygen from a directory containing a file called -# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE -# tag is left empty. - -LAYOUT_FILE = - -# The CITE_BIB_FILES tag can be used to specify one or more bib files containing -# the reference definitions. This must be a list of .bib files. The .bib -# extension is automatically appended if omitted. This requires the bibtex tool -# to be installed. See also http://en.wikipedia.org/wiki/BibTeX for more info. -# For LaTeX the style of the bibliography can be controlled using -# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the -# search path. See also \cite for info how to create references. - -CITE_BIB_FILES = - -#--------------------------------------------------------------------------- -# Configuration options related to warning and progress messages -#--------------------------------------------------------------------------- - -# The QUIET tag can be used to turn on/off the messages that are generated to -# standard output by doxygen. If QUIET is set to YES this implies that the -# messages are off. -# The default value is: NO. - -QUIET = YES - -# The WARNINGS tag can be used to turn on/off the warning messages that are -# generated to standard error (stderr) by doxygen. If WARNINGS is set to YES -# this implies that the warnings are on. -# -# Tip: Turn warnings on while writing the documentation. -# The default value is: YES. - -WARNINGS = YES - -# If the WARN_IF_UNDOCUMENTED tag is set to YES then doxygen will generate -# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag -# will automatically be disabled. -# The default value is: YES. - -WARN_IF_UNDOCUMENTED = YES - -# If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for -# potential errors in the documentation, such as not documenting some parameters -# in a documented function, or documenting parameters that don't exist or using -# markup commands wrongly. -# The default value is: YES. - -WARN_IF_DOC_ERROR = YES - -# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that -# are documented, but have no documentation for their parameters or return -# value. If set to NO, doxygen will only warn about wrong or incomplete -# parameter documentation, but not about the absence of documentation. -# The default value is: NO. - -WARN_NO_PARAMDOC = YES - -# If the WARN_AS_ERROR tag is set to YES then doxygen will immediately stop when -# a warning is encountered. -# The default value is: NO. - -WARN_AS_ERROR = NO - -# The WARN_FORMAT tag determines the format of the warning messages that doxygen -# can produce. The string should contain the $file, $line, and $text tags, which -# will be replaced by the file and line number from which the warning originated -# and the warning text. Optionally the format may contain $version, which will -# be replaced by the version of the file (if it could be obtained via -# FILE_VERSION_FILTER) -# The default value is: $file:$line: $text. - -WARN_FORMAT = "$file:$line: $text" - -# The WARN_LOGFILE tag can be used to specify a file to which warning and error -# messages should be written. If left blank the output is written to standard -# error (stderr). - -WARN_LOGFILE = - -#--------------------------------------------------------------------------- -# Configuration options related to the input files -#--------------------------------------------------------------------------- - -# The INPUT tag is used to specify the files and/or directories that contain -# documented source files. You may enter file names like myfile.cpp or -# directories like /usr/src/myproject. Separate the files or directories with -# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING -# Note: If this tag is empty the current directory is searched. - -INPUT = - -# This tag can be used to specify the character encoding of the source files -# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses -# libiconv (or the iconv built into libc) for the transcoding. See the libiconv -# documentation (see: http://www.gnu.org/software/libiconv) for the list of -# possible encodings. -# The default value is: UTF-8. - -INPUT_ENCODING = UTF-8 - -# If the value of the INPUT tag contains directories, you can use the -# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and -# *.h) to filter out the source-files in the directories. -# -# Note that for custom extensions or not directly supported extensions you also -# need to set EXTENSION_MAPPING for the extension otherwise the files are not -# read by doxygen. -# -# If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp, -# *.c++, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, -# *.hh, *.hxx, *.hpp, *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, -# *.m, *.markdown, *.md, *.mm, *.dox, *.py, *.pyw, *.f90, *.f95, *.f03, *.f08, -# *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf and *.qsf. - -FILE_PATTERNS = *.c \ - *.cc \ - *.cxx \ - *.cpp \ - *.c++ \ - *.h \ - *.hh \ - *.hxx \ - *.hpp \ - *.h++ - -# The RECURSIVE tag can be used to specify whether or not subdirectories should -# be searched for input files as well. -# The default value is: NO. - -RECURSIVE = NO - -# The EXCLUDE tag can be used to specify files and/or directories that should be -# excluded from the INPUT source files. This way you can easily exclude a -# subdirectory from a directory tree whose root is specified with the INPUT tag. -# -# Note that relative paths are relative to the directory from which doxygen is -# run. - -EXCLUDE = lv_conf.h - -# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or -# directories that are symbolic links (a Unix file system feature) are excluded -# from the input. -# The default value is: NO. - -EXCLUDE_SYMLINKS = NO - -# If the value of the INPUT tag contains directories, you can use the -# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude -# certain files from those directories. -# -# Note that the wildcards are matched against the file with absolute path, so to -# exclude all test directories for example use the pattern */test/* - -EXCLUDE_PATTERNS = *.md - -# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names -# (namespaces, classes, functions, etc.) that should be excluded from the -# output. The symbol name can be a fully qualified name, a word, or if the -# wildcard * is used, a substring. Examples: ANamespace, AClass, -# AClass::ANamespace, ANamespace::*Test -# -# Note that the wildcards are matched against the file with absolute path, so to -# exclude all test directories use the pattern */test/* - -EXCLUDE_SYMBOLS = - -# The EXAMPLE_PATH tag can be used to specify one or more files or directories -# that contain example code fragments that are included (see the \include -# command). - -EXAMPLE_PATH = - -# If the value of the EXAMPLE_PATH tag contains directories, you can use the -# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and -# *.h) to filter out the source-files in the directories. If left blank all -# files are included. - -EXAMPLE_PATTERNS = * - -# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be -# searched for input files to be used with the \include or \dontinclude commands -# irrespective of the value of the RECURSIVE tag. -# The default value is: NO. - -EXAMPLE_RECURSIVE = NO - -# The IMAGE_PATH tag can be used to specify one or more files or directories -# that contain images that are to be included in the documentation (see the -# \image command). - -IMAGE_PATH = - -# The INPUT_FILTER tag can be used to specify a program that doxygen should -# invoke to filter for each input file. Doxygen will invoke the filter program -# by executing (via popen()) the command: -# -# -# -# where is the value of the INPUT_FILTER tag, and is the -# name of an input file. Doxygen will then use the output that the filter -# program writes to standard output. If FILTER_PATTERNS is specified, this tag -# will be ignored. -# -# Note that the filter must not add or remove lines; it is applied before the -# code is scanned, but not when the output code is generated. If lines are added -# or removed, the anchors will not be placed correctly. -# -# Note that for custom extensions or not directly supported extensions you also -# need to set EXTENSION_MAPPING for the extension otherwise the files are not -# properly processed by doxygen. - -INPUT_FILTER = - -# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern -# basis. Doxygen will compare the file name with each pattern and apply the -# filter if there is a match. The filters are a list of the form: pattern=filter -# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how -# filters are used. If the FILTER_PATTERNS tag is empty or if none of the -# patterns match the file name, INPUT_FILTER is applied. -# -# Note that for custom extensions or not directly supported extensions you also -# need to set EXTENSION_MAPPING for the extension otherwise the files are not -# properly processed by doxygen. - -FILTER_PATTERNS = - -# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using -# INPUT_FILTER) will also be used to filter the input files that are used for -# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). -# The default value is: NO. - -FILTER_SOURCE_FILES = NO - -# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file -# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and -# it is also possible to disable source filtering for a specific pattern using -# *.ext= (so without naming a filter). -# This tag requires that the tag FILTER_SOURCE_FILES is set to YES. - -FILTER_SOURCE_PATTERNS = - -# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that -# is part of the input, its contents will be placed on the main page -# (index.html). This can be useful if you have a project on for instance GitHub -# and want to reuse the introduction page also for the doxygen output. - -USE_MDFILE_AS_MAINPAGE = - -#--------------------------------------------------------------------------- -# Configuration options related to source browsing -#--------------------------------------------------------------------------- - -# If the SOURCE_BROWSER tag is set to YES then a list of source files will be -# generated. Documented entities will be cross-referenced with these sources. -# -# Note: To get rid of all source code in the generated output, make sure that -# also VERBATIM_HEADERS is set to NO. -# The default value is: NO. - -SOURCE_BROWSER = NO - -# Setting the INLINE_SOURCES tag to YES will include the body of functions, -# classes and enums directly into the documentation. -# The default value is: NO. - -INLINE_SOURCES = NO - -# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any -# special comment blocks from generated source code fragments. Normal C, C++ and -# Fortran comments will always remain visible. -# The default value is: YES. - -STRIP_CODE_COMMENTS = YES - -# If the REFERENCED_BY_RELATION tag is set to YES then for each documented -# function all documented functions referencing it will be listed. -# The default value is: NO. - -REFERENCED_BY_RELATION = NO - -# If the REFERENCES_RELATION tag is set to YES then for each documented function -# all documented entities called/used by that function will be listed. -# The default value is: NO. - -REFERENCES_RELATION = NO - -# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set -# to YES then the hyperlinks from functions in REFERENCES_RELATION and -# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will -# link to the documentation. -# The default value is: YES. - -REFERENCES_LINK_SOURCE = YES - -# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the -# source code will show a tooltip with additional information such as prototype, -# brief description and links to the definition and documentation. Since this -# will make the HTML file larger and loading of large files a bit slower, you -# can opt to disable this feature. -# The default value is: YES. -# This tag requires that the tag SOURCE_BROWSER is set to YES. - -SOURCE_TOOLTIPS = YES - -# If the USE_HTAGS tag is set to YES then the references to source code will -# point to the HTML generated by the htags(1) tool instead of doxygen built-in -# source browser. The htags tool is part of GNU's global source tagging system -# (see http://www.gnu.org/software/global/global.html). You will need version -# 4.8.6 or higher. -# -# To use it do the following: -# - Install the latest version of global -# - Enable SOURCE_BROWSER and USE_HTAGS in the config file -# - Make sure the INPUT points to the root of the source tree -# - Run doxygen as normal -# -# Doxygen will invoke htags (and that will in turn invoke gtags), so these -# tools must be available from the command line (i.e. in the search path). -# -# The result: instead of the source browser generated by doxygen, the links to -# source code will now point to the output of htags. -# The default value is: NO. -# This tag requires that the tag SOURCE_BROWSER is set to YES. - -USE_HTAGS = NO - -# If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a -# verbatim copy of the header file for each class for which an include is -# specified. Set to NO to disable this. -# See also: Section \class. -# The default value is: YES. - -VERBATIM_HEADERS = YES - -# If the CLANG_ASSISTED_PARSING tag is set to YES then doxygen will use the -# clang parser (see: http://clang.llvm.org/) for more accurate parsing at the -# cost of reduced performance. This can be particularly helpful with template -# rich C++ code for which doxygen's built-in parser lacks the necessary type -# information. -# Note: The availability of this option depends on whether or not doxygen was -# generated with the -Duse-libclang=ON option for CMake. -# The default value is: NO. - -CLANG_ASSISTED_PARSING = NO - -# If clang assisted parsing is enabled you can provide the compiler with command -# line options that you would normally use when invoking the compiler. Note that -# the include paths will already be set by doxygen for the files and directories -# specified with INPUT and INCLUDE_PATH. -# This tag requires that the tag CLANG_ASSISTED_PARSING is set to YES. - -CLANG_OPTIONS = - -#--------------------------------------------------------------------------- -# Configuration options related to the alphabetical class index -#--------------------------------------------------------------------------- - -# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all -# compounds will be generated. Enable this if the project contains a lot of -# classes, structs, unions or interfaces. -# The default value is: YES. - -ALPHABETICAL_INDEX = YES - -# The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in -# which the alphabetical index list will be split. -# Minimum value: 1, maximum value: 20, default value: 5. -# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. - -COLS_IN_ALPHA_INDEX = 5 - -# In case all classes in a project start with a common prefix, all classes will -# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag -# can be used to specify a prefix (or a list of prefixes) that should be ignored -# while generating the index headers. -# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. - -IGNORE_PREFIX = - -#--------------------------------------------------------------------------- -# Configuration options related to the HTML output -#--------------------------------------------------------------------------- - -# If the GENERATE_HTML tag is set to YES, doxygen will generate HTML output -# The default value is: YES. - -GENERATE_HTML = YES - -# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a -# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of -# it. -# The default directory is: html. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_OUTPUT = html - -# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each -# generated HTML page (for example: .htm, .php, .asp). -# The default value is: .html. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_FILE_EXTENSION = .html - -# The HTML_HEADER tag can be used to specify a user-defined HTML header file for -# each generated HTML page. If the tag is left blank doxygen will generate a -# standard header. -# -# To get valid HTML the header file that includes any scripts and style sheets -# that doxygen needs, which is dependent on the configuration options used (e.g. -# the setting GENERATE_TREEVIEW). It is highly recommended to start with a -# default header using -# doxygen -w html new_header.html new_footer.html new_stylesheet.css -# YourConfigFile -# and then modify the file new_header.html. See also section "Doxygen usage" -# for information on how to generate the default header that doxygen normally -# uses. -# Note: The header is subject to change so you typically have to regenerate the -# default header when upgrading to a newer version of doxygen. For a description -# of the possible markers and block names see the documentation. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_HEADER = - -# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each -# generated HTML page. If the tag is left blank doxygen will generate a standard -# footer. See HTML_HEADER for more information on how to generate a default -# footer and what special commands can be used inside the footer. See also -# section "Doxygen usage" for information on how to generate the default footer -# that doxygen normally uses. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_FOOTER = - -# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style -# sheet that is used by each HTML page. It can be used to fine-tune the look of -# the HTML output. If left blank doxygen will generate a default style sheet. -# See also section "Doxygen usage" for information on how to generate the style -# sheet that doxygen normally uses. -# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as -# it is more robust and this tag (HTML_STYLESHEET) will in the future become -# obsolete. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_STYLESHEET = - -# The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined -# cascading style sheets that are included after the standard style sheets -# created by doxygen. Using this option one can overrule certain style aspects. -# This is preferred over using HTML_STYLESHEET since it does not replace the -# standard style sheet and is therefore more robust against future updates. -# Doxygen will copy the style sheet files to the output directory. -# Note: The order of the extra style sheet files is of importance (e.g. the last -# style sheet in the list overrules the setting of the previous ones in the -# list). For an example see the documentation. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_EXTRA_STYLESHEET = - -# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or -# other source files which should be copied to the HTML output directory. Note -# that these files will be copied to the base HTML output directory. Use the -# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these -# files. In the HTML_STYLESHEET file, use the file name only. Also note that the -# files will be copied as-is; there are no commands or markers available. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_EXTRA_FILES = - -# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen -# will adjust the colors in the style sheet and background images according to -# this color. Hue is specified as an angle on a colorwheel, see -# http://en.wikipedia.org/wiki/Hue for more information. For instance the value -# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300 -# purple, and 360 is red again. -# Minimum value: 0, maximum value: 359, default value: 220. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_COLORSTYLE_HUE = 220 - -# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors -# in the HTML output. For a value of 0 the output will use grayscales only. A -# value of 255 will produce the most vivid colors. -# Minimum value: 0, maximum value: 255, default value: 100. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_COLORSTYLE_SAT = 100 - -# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the -# luminance component of the colors in the HTML output. Values below 100 -# gradually make the output lighter, whereas values above 100 make the output -# darker. The value divided by 100 is the actual gamma applied, so 80 represents -# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not -# change the gamma. -# Minimum value: 40, maximum value: 240, default value: 80. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_COLORSTYLE_GAMMA = 80 - -# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML -# page will contain the date and time when the page was generated. Setting this -# to YES can help to show when doxygen was last run and thus if the -# documentation is up to date. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_TIMESTAMP = NO - -# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML -# documentation will contain sections that can be hidden and shown after the -# page has loaded. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_DYNAMIC_SECTIONS = NO - -# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries -# shown in the various tree structured indices initially; the user can expand -# and collapse entries dynamically later on. Doxygen will expand the tree to -# such a level that at most the specified number of entries are visible (unless -# a fully collapsed tree already exceeds this amount). So setting the number of -# entries 1 will produce a full collapsed tree by default. 0 is a special value -# representing an infinite number of entries and will result in a full expanded -# tree by default. -# Minimum value: 0, maximum value: 9999, default value: 100. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_INDEX_NUM_ENTRIES = 100 - -# If the GENERATE_DOCSET tag is set to YES, additional index files will be -# generated that can be used as input for Apple's Xcode 3 integrated development -# environment (see: http://developer.apple.com/tools/xcode/), introduced with -# OSX 10.5 (Leopard). To create a documentation set, doxygen will generate a -# Makefile in the HTML output directory. Running make will produce the docset in -# that directory and running make install will install the docset in -# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at -# startup. See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html -# for more information. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -GENERATE_DOCSET = NO - -# This tag determines the name of the docset feed. A documentation feed provides -# an umbrella under which multiple documentation sets from a single provider -# (such as a company or product suite) can be grouped. -# The default value is: Doxygen generated docs. -# This tag requires that the tag GENERATE_DOCSET is set to YES. - -DOCSET_FEEDNAME = "Doxygen generated docs" - -# This tag specifies a string that should uniquely identify the documentation -# set bundle. This should be a reverse domain-name style string, e.g. -# com.mycompany.MyDocSet. Doxygen will append .docset to the name. -# The default value is: org.doxygen.Project. -# This tag requires that the tag GENERATE_DOCSET is set to YES. - -DOCSET_BUNDLE_ID = org.doxygen.Project - -# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify -# the documentation publisher. This should be a reverse domain-name style -# string, e.g. com.mycompany.MyDocSet.documentation. -# The default value is: org.doxygen.Publisher. -# This tag requires that the tag GENERATE_DOCSET is set to YES. - -DOCSET_PUBLISHER_ID = org.doxygen.Publisher - -# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher. -# The default value is: Publisher. -# This tag requires that the tag GENERATE_DOCSET is set to YES. - -DOCSET_PUBLISHER_NAME = Publisher - -# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three -# additional HTML index files: index.hhp, index.hhc, and index.hhk. The -# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop -# (see: http://www.microsoft.com/en-us/download/details.aspx?id=21138) on -# Windows. -# -# The HTML Help Workshop contains a compiler that can convert all HTML output -# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML -# files are now used as the Windows 98 help format, and will replace the old -# Windows help format (.hlp) on all Windows platforms in the future. Compressed -# HTML files also contain an index, a table of contents, and you can search for -# words in the documentation. The HTML workshop also contains a viewer for -# compressed HTML files. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -GENERATE_HTMLHELP = NO - -# The CHM_FILE tag can be used to specify the file name of the resulting .chm -# file. You can add a path in front of the file if the result should not be -# written to the html output directory. -# This tag requires that the tag GENERATE_HTMLHELP is set to YES. - -CHM_FILE = - -# The HHC_LOCATION tag can be used to specify the location (absolute path -# including file name) of the HTML help compiler (hhc.exe). If non-empty, -# doxygen will try to run the HTML help compiler on the generated index.hhp. -# The file has to be specified with full path. -# This tag requires that the tag GENERATE_HTMLHELP is set to YES. - -HHC_LOCATION = - -# The GENERATE_CHI flag controls if a separate .chi index file is generated -# (YES) or that it should be included in the master .chm file (NO). -# The default value is: NO. -# This tag requires that the tag GENERATE_HTMLHELP is set to YES. - -GENERATE_CHI = NO - -# The CHM_INDEX_ENCODING is used to encode HtmlHelp index (hhk), content (hhc) -# and project file content. -# This tag requires that the tag GENERATE_HTMLHELP is set to YES. - -CHM_INDEX_ENCODING = - -# The BINARY_TOC flag controls whether a binary table of contents is generated -# (YES) or a normal table of contents (NO) in the .chm file. Furthermore it -# enables the Previous and Next buttons. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTMLHELP is set to YES. - -BINARY_TOC = NO - -# The TOC_EXPAND flag can be set to YES to add extra items for group members to -# the table of contents of the HTML help documentation and to the tree view. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTMLHELP is set to YES. - -TOC_EXPAND = NO - -# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and -# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that -# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help -# (.qch) of the generated HTML documentation. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -GENERATE_QHP = NO - -# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify -# the file name of the resulting .qch file. The path specified is relative to -# the HTML output folder. -# This tag requires that the tag GENERATE_QHP is set to YES. - -QCH_FILE = - -# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help -# Project output. For more information please see Qt Help Project / Namespace -# (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#namespace). -# The default value is: org.doxygen.Project. -# This tag requires that the tag GENERATE_QHP is set to YES. - -QHP_NAMESPACE = org.doxygen.Project - -# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt -# Help Project output. For more information please see Qt Help Project / Virtual -# Folders (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#virtual- -# folders). -# The default value is: doc. -# This tag requires that the tag GENERATE_QHP is set to YES. - -QHP_VIRTUAL_FOLDER = doc - -# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom -# filter to add. For more information please see Qt Help Project / Custom -# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- -# filters). -# This tag requires that the tag GENERATE_QHP is set to YES. - -QHP_CUST_FILTER_NAME = - -# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the -# custom filter to add. For more information please see Qt Help Project / Custom -# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- -# filters). -# This tag requires that the tag GENERATE_QHP is set to YES. - -QHP_CUST_FILTER_ATTRS = - -# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this -# project's filter section matches. Qt Help Project / Filter Attributes (see: -# http://qt-project.org/doc/qt-4.8/qthelpproject.html#filter-attributes). -# This tag requires that the tag GENERATE_QHP is set to YES. - -QHP_SECT_FILTER_ATTRS = - -# The QHG_LOCATION tag can be used to specify the location of Qt's -# qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the -# generated .qhp file. -# This tag requires that the tag GENERATE_QHP is set to YES. - -QHG_LOCATION = - -# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be -# generated, together with the HTML files, they form an Eclipse help plugin. To -# install this plugin and make it available under the help contents menu in -# Eclipse, the contents of the directory containing the HTML and XML files needs -# to be copied into the plugins directory of eclipse. The name of the directory -# within the plugins directory should be the same as the ECLIPSE_DOC_ID value. -# After copying Eclipse needs to be restarted before the help appears. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -GENERATE_ECLIPSEHELP = NO - -# A unique identifier for the Eclipse help plugin. When installing the plugin -# the directory name containing the HTML and XML files should also have this -# name. Each documentation set should have its own identifier. -# The default value is: org.doxygen.Project. -# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES. - -ECLIPSE_DOC_ID = org.doxygen.Project - -# If you want full control over the layout of the generated HTML pages it might -# be necessary to disable the index and replace it with your own. The -# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top -# of each HTML page. A value of NO enables the index and the value YES disables -# it. Since the tabs in the index contain the same information as the navigation -# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -DISABLE_INDEX = NO - -# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index -# structure should be generated to display hierarchical information. If the tag -# value is set to YES, a side panel will be generated containing a tree-like -# index structure (just like the one that is generated for HTML Help). For this -# to work a browser that supports JavaScript, DHTML, CSS and frames is required -# (i.e. any modern browser). Windows users are probably better off using the -# HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can -# further fine-tune the look of the index. As an example, the default style -# sheet generated by doxygen has an example that shows how to put an image at -# the root of the tree instead of the PROJECT_NAME. Since the tree basically has -# the same information as the tab index, you could consider setting -# DISABLE_INDEX to YES when enabling this option. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -GENERATE_TREEVIEW = NO - -# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that -# doxygen will group on one line in the generated HTML documentation. -# -# Note that a value of 0 will completely suppress the enum values from appearing -# in the overview section. -# Minimum value: 0, maximum value: 20, default value: 4. -# This tag requires that the tag GENERATE_HTML is set to YES. - -ENUM_VALUES_PER_LINE = 4 - -# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used -# to set the initial width (in pixels) of the frame in which the tree is shown. -# Minimum value: 0, maximum value: 1500, default value: 250. -# This tag requires that the tag GENERATE_HTML is set to YES. - -TREEVIEW_WIDTH = 250 - -# If the EXT_LINKS_IN_WINDOW option is set to YES, doxygen will open links to -# external symbols imported via tag files in a separate window. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -EXT_LINKS_IN_WINDOW = NO - -# Use this tag to change the font size of LaTeX formulas included as images in -# the HTML documentation. When you change the font size after a successful -# doxygen run you need to manually remove any form_*.png images from the HTML -# output directory to force them to be regenerated. -# Minimum value: 8, maximum value: 50, default value: 10. -# This tag requires that the tag GENERATE_HTML is set to YES. - -FORMULA_FONTSIZE = 10 - -# Use the FORMULA_TRANPARENT tag to determine whether or not the images -# generated for formulas are transparent PNGs. Transparent PNGs are not -# supported properly for IE 6.0, but are supported on all modern browsers. -# -# Note that when changing this option you need to delete any form_*.png files in -# the HTML output directory before the changes have effect. -# The default value is: YES. -# This tag requires that the tag GENERATE_HTML is set to YES. - -FORMULA_TRANSPARENT = YES - -# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see -# http://www.mathjax.org) which uses client side Javascript for the rendering -# instead of using pre-rendered bitmaps. Use this if you do not have LaTeX -# installed or if you want to formulas look prettier in the HTML output. When -# enabled you may also need to install MathJax separately and configure the path -# to it using the MATHJAX_RELPATH option. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -USE_MATHJAX = NO - -# When MathJax is enabled you can set the default output format to be used for -# the MathJax output. See the MathJax site (see: -# http://docs.mathjax.org/en/latest/output.html) for more details. -# Possible values are: HTML-CSS (which is slower, but has the best -# compatibility), NativeMML (i.e. MathML) and SVG. -# The default value is: HTML-CSS. -# This tag requires that the tag USE_MATHJAX is set to YES. - -MATHJAX_FORMAT = HTML-CSS - -# When MathJax is enabled you need to specify the location relative to the HTML -# output directory using the MATHJAX_RELPATH option. The destination directory -# should contain the MathJax.js script. For instance, if the mathjax directory -# is located at the same level as the HTML output directory, then -# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax -# Content Delivery Network so you can quickly see the result without installing -# MathJax. However, it is strongly recommended to install a local copy of -# MathJax from http://www.mathjax.org before deployment. -# The default value is: http://cdn.mathjax.org/mathjax/latest. -# This tag requires that the tag USE_MATHJAX is set to YES. - -MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest - -# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax -# extension names that should be enabled during MathJax rendering. For example -# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols -# This tag requires that the tag USE_MATHJAX is set to YES. - -MATHJAX_EXTENSIONS = - -# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces -# of code that will be used on startup of the MathJax code. See the MathJax site -# (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an -# example see the documentation. -# This tag requires that the tag USE_MATHJAX is set to YES. - -MATHJAX_CODEFILE = - -# When the SEARCHENGINE tag is enabled doxygen will generate a search box for -# the HTML output. The underlying search engine uses javascript and DHTML and -# should work on any modern browser. Note that when using HTML help -# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET) -# there is already a search function so this one should typically be disabled. -# For large projects the javascript based search engine can be slow, then -# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to -# search using the keyboard; to jump to the search box use + S -# (what the is depends on the OS and browser, but it is typically -# , /