Tasmota/lib/libesp32/ESP-Mail-Client/src/extras/MB_MCU.h
s-hadinger c2f8821b2f
Sendmail upgraded to ESP-Mail-Client v3.4.9 from v1.2.0, using BearSSL instead of MbedTLS (#19460)
* `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
2023-09-04 23:00:37 +02:00

67 lines
1006 B
C

#pragma once
#ifndef MB_MCU_H
#define MB_MCU_H
#if defined(ESP8266) || defined(ESP32)
#ifndef MB_ARDUINO_ESP
#define MB_ARDUINO_ESP
#endif
#endif
#if defined(__arm__)
#ifndef MB_ARDUINO_ARM
#define MB_ARDUINO_ARM
#endif
#endif
// Renesas
#if defined(ARDUINO_PORTENTA_C33)
#endif
// Renesas
#if defined(ARDUINO_UNOWIFIR4)
#endif
// Renesas
#if defined(ARDUINO_MINIMA)
#endif
#if defined(ARDUINO_PORTENTA_H7_M7) || defined(ARDUINO_PORTENTA_H7_M4) || defined(ARDUINO_PORTENTA_X8)
#endif
#if defined(ARDUINO_ARCH_SAMD)
#ifndef MB_ARDUINO_ARCH_SAMD
#define MB_ARDUINO_ARCH_SAMD
#endif
#endif
#if defined(ARDUINO_ARCH_RP2040)
#if defined(ARDUINO_NANO_RP2040_CONNECT)
#ifndef MB_ARDUINO_NANO_RP2040_CONNECT
#define MB_ARDUINO_NANO_RP2040_CONNECT
#endif
#else
#ifndef MB_ARDUINO_PICO
#define MB_ARDUINO_PICO
#endif
#endif
#endif
#if defined(TEENSYDUINO)
#ifndef MB_ARDUINO_TEENSY
#define MB_ARDUINO_TEENSY
#endif
#endif
#endif