Commit c077f709 authored by TMRh20's avatar TMRh20

Fix: Broke SPI for Due and Teensy last commit

- add #define for _SPI
- add links to alternate SPI libs
parent f8791b1d
...@@ -24,8 +24,8 @@ ...@@ -24,8 +24,8 @@
//#define FAILURE_HANDLING //#define FAILURE_HANDLING
//#define SERIAL_DEBUG //#define SERIAL_DEBUG
//#define MINIMAL //#define MINIMAL
//#define SPI_UART //#define SPI_UART // Requires library from https://github.com/TMRh20/Sketches/tree/master/SPI_UART
//#define SOFTSPI //#define SOFTSPI // Requires library from https://github.com/greiman/DigitalIO
/**********************/ /**********************/
// Define _BV for non-Arduino platforms and for Arduino DUE // Define _BV for non-Arduino platforms and for Arduino DUE
...@@ -52,7 +52,6 @@ ...@@ -52,7 +52,6 @@
#endif #endif
#endif #endif
#else #else
#include <stdint.h> #include <stdint.h>
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>
...@@ -71,7 +70,7 @@ ...@@ -71,7 +70,7 @@
#define printf Serial.printf #define printf Serial.printf
#endif #endif
#define _SPI SPI
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment