diff --git a/tasmota/my_user_config.h b/tasmota/my_user_config.h index 9e4be6012..1226b55fe 100644 --- a/tasmota/my_user_config.h +++ b/tasmota/my_user_config.h @@ -661,7 +661,7 @@ /*********************************************************************************************\ * Optional firmware configurations - * Select none or just one for optional features and sensors as configured in tasmota_post.h + * Select none or just one for optional features and sensors as configured in tasmota_configurations.h * See RELEASENOTES.md for selected features \*********************************************************************************************/ diff --git a/tasmota/settings.ino b/tasmota/settings.ino index 20c5d87c8..2a7e8ce31 100644 --- a/tasmota/settings.ino +++ b/tasmota/settings.ino @@ -319,7 +319,7 @@ void SettingsSaveAll(void) void UpdateQuickPowerCycle(bool update) { - if (Settings.flag3.fast_power_cycle_disable) { return; } + if (Settings.flag3.fast_power_cycle_disable) { return; } // SetOption65 - Disable fast power cycle detection for device reset uint32_t pc_register; uint32_t pc_location = SETTINGS_LOCATION - CFG_ROTATES; diff --git a/tasmota/support.ino b/tasmota/support.ino index 81cb1b002..453eb4875 100644 --- a/tasmota/support.ino +++ b/tasmota/support.ino @@ -213,7 +213,7 @@ char* ulltoa(unsigned long long value, char *str, int radix) } // see https://stackoverflow.com/questions/6357031/how-do-you-convert-a-byte-array-to-a-hexadecimal-string-in-c -// char* ToHex_P(unsigned char * in, size_t insz, char * out, size_t outsz, char inbetween = '\0'); in tasmota_post.h +// char* ToHex_P(unsigned char * in, size_t insz, char * out, size_t outsz, char inbetween = '\0'); in tasmota_globals.h char* ToHex_P(const unsigned char * in, size_t insz, char * out, size_t outsz, char inbetween) { // ToHex_P(in, insz, out, outz) -> "12345667" diff --git a/tasmota/support_legacy_cores.ino b/tasmota/support_legacy_cores.ino index 0d429c75f..46546ff1d 100644 --- a/tasmota/support_legacy_cores.ino +++ b/tasmota/support_legacy_cores.ino @@ -162,7 +162,7 @@ void* memmove_P(void *dest, const void *src, size_t n) * Core overrides \*********************************************************************************************/ -// Add below line to tasmota_post.h +// Add below line to tasmota_globals.h // extern "C" void resetPins(); void resetPins() { diff --git a/tasmota/tasmota.ino b/tasmota/tasmota.ino index 7b5580ac3..ec06f11a0 100644 --- a/tasmota/tasmota.ino +++ b/tasmota/tasmota.ino @@ -36,7 +36,7 @@ #include "tasmota.h" // Enumeration used in my_user_config.h #include "my_user_config.h" // Fixed user configurable options #ifdef USE_MQTT_TLS - #include // we need to include before "tasmota_post.h" to take precedence over the BearSSL version in Arduino + #include // We need to include before "tasmota_globals.h" to take precedence over the BearSSL version in Arduino #endif // USE_MQTT_TLS #include "tasmota_globals.h" // Function prototypes and global configuration #include "i18n.h" // Language support configured by my_user_config.h