mirror of
https://github.com/felis/USB_Host_Shield_2.0.git
synced 2024-03-22 11:31:26 +01:00
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:
parent
20596ee623
commit
71e4596ab1
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ public:
|
|||
#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
|
||||
#endif
|
||||
#else
|
||||
#elif !defined(RBL_NRF51822)
|
||||
SPI.setClockDivider(4); // Set speed to 84MHz/4=21MHz - the MAX3421E can handle up to 26MHz
|
||||
#endif
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue