SafeString  4.1.27
SafeString is a safe, robust and debuggable replacement for string processing in Arduino
SafeStringNameSpaceStart.h
Go to the documentation of this file.
1 #ifndef SAFE_STRING_NAMESPACE_START_H
2 #define SAFE_STRING_NAMESPACE_START_H
3 
4 #if defined(MEGATINYCORE_MAJOR) || defined(MOTEINO_M0) || defined(RFGATEWAY_M4) || defined(CURRENT_RANGER) || defined(__SAMD51__)
5 // to skip this for SparkFun RedboardTurbo and MegaTinyCore and MOTEINO boards and Adafruit M4 boards
6 #else
7 #if defined(ARDUINO_ARDUINO_NANO33BLE) || defined(ARDUINO_ARCH_SAMD) || defined(ARDUINO_ARCH_MEGAAVR) || defined(ARDUINO_ARCH_MBED_RP2040) || defined(ARDUINO_ARCH_RP2040)
8 namespace arduino {
9 #endif
10 #endif // #if defined(ARDUINO_SAMD_ZERO) || defined(MEGATINYCORE_MAJOR)
11 
12 #endif