SafeString  4.1.40
SafeString is a safe, robust and debuggable replacement for string processing in Arduino
SafeStringNameSpace.h
Go to the documentation of this file.
1 #ifndef SAFE_STRING_NAMESPACE_H
2 #define SAFE_STRING_NAMESPACE_H
3 #if defined(MEGATINYCORE_MAJOR) || defined(MOTEINO_M0) || defined(RFGATEWAY_M4) || defined(CURRENT_RANGER) || defined(__SAMD51__)
4 // to skip this for SparkFun RedboardTurbo and MegaTinyCore and MOTEINO boards and Adafruit M4 boards
5 #else
6 #if defined(ARDUINO_ARDUINO_NANO33BLE) || defined(ARDUINO_ARCH_MEGAAVR) || defined(ARDUINO_ARCH_MBED_RP2040) || defined(ARDUINO_ARCH_RP2040) || defined(ARDUINO_UNOR4_WIFI) || defined(ARDUINO_UNOR4_MINIMA) || defined(ARDUINO_ARCH_MBED)
7 using namespace arduino;
8 #endif
9 #endif // #if defined(MEGATINYCORE_MAJOR) ...
10 
11 // only execute this block for ARDUINO_ARCH_SAMD
12 #if defined(ARDUINO_ARCH_SAMD)
13 #if defined(ARDUINO_SAMD_ADAFRUIT)
14 #else
15 using namespace arduino;
16 #endif
17 #endif
18 
19 #endif