11 lines
364 B
C++
11 lines
364 B
C++
/// @file Pintest.ino
|
|
/// @brief Pintest example with platform detection
|
|
/// @example Pintest.ino
|
|
|
|
// Platform detection logic
|
|
#if !defined(__AVR_ATtiny88__) && !defined(ARDUINO_attinyxy4) && !defined(ARDUINO_attinyxy6) && (defined(__AVR__) || (defined(__arm__) && defined(TEENSYDUINO)))
|
|
#include "Pintest.h"
|
|
#else
|
|
#include "platforms/sketch_fake.hpp"
|
|
#endif
|