#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);

View file

@ -11,7 +11,7 @@ static SPISettings spiConfig;
// Standard SPI functions
/** Initialise SPI bus */
void spiBegin(void) {
#ifndef SS_PIN
#if !PIN_EXISTS(SS)
#error SS_PIN not defined!
#endif
SET_OUTPUT(SS_PIN);
@ -21,7 +21,7 @@ void spiBegin(void) {
SET_OUTPUT(MOSI_PIN);
//#if DISABLED(SOFTWARE_SPI)
#if false
#if 0
// set SS high - may be chip select for another SPI device
#if SET_SPI_SS_HIGH
WRITE(SS_PIN, HIGH);