mirror of
https://github.com/arendst/Tasmota.git
synced 2025-04-28 16:57:16 +00:00

* `Sendmail` upgraded to ESP-Mail-Client v3.4.9 from v1.2.0, using BearSSL instead of MbedTLS * Fix compilation on ESP8266 * Fix compilation * fix compilation
12 lines
275 B
C
12 lines
275 B
C
|
|
#pragma once
|
|
|
|
#ifndef ESP_MAIL_VERSION
|
|
|
|
#define ESP_MAIL_VERSION "3.4.9"
|
|
#define ESP_MAIL_VERSION_NUM 30409
|
|
|
|
/* The inconsistent file version checking to prevent mixed versions compilation. */
|
|
#define VALID_VERSION_CHECK(ver) (ver == ESP_MAIL_VERSION_NUM)
|
|
|
|
#endif |