#ifndef => #if !PIN_EXISTS

This commit is contained in:
Scott Lahteine
2017-11-22 16:28:40 -06:00
parent 001ce7a2fd
commit c2fc78c3a8
2 changed files with 3 additions and 3 deletions

View File

@ -76,7 +76,7 @@ static SPISettings spiConfig;
* @details Only configures SS pin since libmaple creates and initialize the SPI object
*/
void spiBegin() {
#ifndef SS_PIN
#if !PIN_EXISTS(SS)
#error "SS_PIN not defined!"
#endif
SET_OUTPUT(SS_PIN);