Fixed Compile Error with RedBearLabs nRF51288

Fixed a macro definition which would cause the compiler to try
to compile against an undefined function in the RBL SDK.
This commit is contained in:
Matt Sieren 2015-06-01 20:52:47 +02:00
parent 20596ee623
commit 71e4596ab1

View file

@ -56,7 +56,7 @@ public:
#else #else
SPI.setClockDivider(SPI_CLOCK_DIV2); // This will set the SPI frequency to 8MHz - it could be higher, but it is not supported in the old API SPI.setClockDivider(SPI_CLOCK_DIV2); // This will set the SPI frequency to 8MHz - it could be higher, but it is not supported in the old API
#endif #endif
#else #elif !defined(RBL_NRF51822)
SPI.setClockDivider(4); // Set speed to 84MHz/4=21MHz - the MAX3421E can handle up to 26MHz SPI.setClockDivider(4); // Set speed to 84MHz/4=21MHz - the MAX3421E can handle up to 26MHz
#endif #endif
} }