Only use spi4teensy3 on Teensy 3.x

This commit is contained in:
Kristian Sloth Lauszus 2020-11-17 16:46:11 +01:00
parent 71aeadeab1
commit e78795af22

View file

@ -80,17 +80,15 @@ e-mail : support@circuitsathome.com
#endif #endif
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// Set to 1 to use the faster spi4teensy3 driver. // Set to 1 to use the faster spi4teensy3 driver on Teensy 3.x
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#ifndef USE_SPI4TEENSY3 #ifndef USE_SPI4TEENSY3
#if defined(CORE_TEENSY) && (defined(__MK20DX128__) || defined(__MK20DX256__) || defined(__MK64FX512__) || defined(__MK66FX1M0__))
#define USE_SPI4TEENSY3 1 #define USE_SPI4TEENSY3 1
#endif #else
// Disabled on the Teensy LC, as it is incompatible for now
#if defined(__MKL26Z64__)
#undef USE_SPI4TEENSY3
#define USE_SPI4TEENSY3 0 #define USE_SPI4TEENSY3 0
#endif #endif
#endif
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// AUTOMATIC Settings // AUTOMATIC Settings