Tasmota/lib/RF24/utility/Teensy/RF24_arch_config.h

32 lines
382 B
C
Raw Normal View History

2020-01-01 18:09:20 +00:00
#if ARDUINO < 100
#include <WProgram.h>
#else
#include <Arduino.h>
#endif
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include <SPI.h>
#define _SPI SPI
#define printf Serial.printf
#ifdef SERIAL_DEBUG
#define IF_SERIAL_DEBUG(x) ({x;})
#else
#define IF_SERIAL_DEBUG(x)
#endif
#define PRIPSTR "%s"