SafeString  4.1.40
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_MEGAAVR) || defined(ARDUINO_ARCH_MBED_RP2040) || defined(ARDUINO_ARCH_RP2040) || defined(ARDUINO_UNOR4_WIFI) || defined(ARDUINO_UNOR4_MINIMA) || defined(ARDUINO_ARCH_MBED)
8 namespace arduino {
9 #endif
10 #endif // #if defined(MEGATINYCORE_MAJOR) ...
11 
12 // only execute this block for ARDUINO_ARCH_SAMD
13 #if defined(ARDUINO_ARCH_SAMD)
14 #if defined(ARDUINO_SAMD_ADAFRUIT)
15 #else
16 namespace arduino {
17 #endif
18 #endif
19 
20 #endif
21