mirror of https://github.com/arendst/Tasmota.git
Merge pull request #14547 from gemu2015/fixes
esp8266 email, scripter on 1m devices
This commit is contained in:
commit
b9f4d55dfc
|
@ -21,7 +21,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "tasmota_options.h"
|
#include "tasmota_options.h"
|
||||||
#if defined(USE_TLS)
|
#ifdef USE_TLS
|
||||||
|
|
||||||
// #define DEBUG_TLS
|
// #define DEBUG_TLS
|
||||||
// #define DEBUG_ESP_SSL
|
// #define DEBUG_ESP_SSL
|
||||||
|
|
|
@ -1354,7 +1354,7 @@ float DoMedian5(uint8_t index, float in) {
|
||||||
return median_array(mf->buffer, MEDIAN_SIZE);
|
return median_array(mf->buffer, MEDIAN_SIZE);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef USE_UFILESYS
|
||||||
void fread_str(uint8_t fref, char *sp, uint16_t slen) {
|
void fread_str(uint8_t fref, char *sp, uint16_t slen) {
|
||||||
uint16_t index = 0;
|
uint16_t index = 0;
|
||||||
while (glob_script_mem.files[fref].available()) {
|
while (glob_script_mem.files[fref].available()) {
|
||||||
|
@ -1371,6 +1371,7 @@ void fread_str(uint8_t fref, char *sp, uint16_t slen) {
|
||||||
}
|
}
|
||||||
*sp = 0;
|
*sp = 0;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef USE_FEXTRACT
|
#ifdef USE_FEXTRACT
|
||||||
|
|
||||||
|
@ -8889,8 +8890,8 @@ uint32_t call2https(const char *host, const char *path) {
|
||||||
uint32_t status = 0;
|
uint32_t status = 0;
|
||||||
|
|
||||||
#ifdef TESLA_POWERWALL
|
#ifdef TESLA_POWERWALL
|
||||||
authCookie = powerwall.getAuthCookie();
|
// authCookie = powerwall.getAuthCookie();
|
||||||
return 0;
|
// return 0;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef ESP32
|
#ifdef ESP32
|
||||||
|
|
Loading…
Reference in New Issue