Use OUT_WRITE in SPI pin init
This commit is contained in:
parent
24c23b60fa
commit
9a56a88200
@ -62,8 +62,7 @@ void spiBegin() {
|
|||||||
#error "SS_PIN not defined!"
|
#error "SS_PIN not defined!"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
WRITE(SS_PIN, HIGH);
|
OUT_WRITE(SS_PIN, HIGH);
|
||||||
SET_OUTPUT(SS_PIN);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void spiInit(uint8_t spiRate) {
|
void spiInit(uint8_t spiRate) {
|
||||||
|
@ -78,13 +78,11 @@ void HAL_init() {
|
|||||||
//_DBG("\n\nDebug running\n");
|
//_DBG("\n\nDebug running\n");
|
||||||
// Initialise the SD card chip select pins as soon as possible
|
// Initialise the SD card chip select pins as soon as possible
|
||||||
#if PIN_EXISTS(SS)
|
#if PIN_EXISTS(SS)
|
||||||
WRITE(SS_PIN, HIGH);
|
OUT_WRITE(SS_PIN, HIGH);
|
||||||
SET_OUTPUT(SS_PIN);
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(ONBOARD_SD_CS) && ONBOARD_SD_CS > -1
|
#if defined(ONBOARD_SD_CS) && ONBOARD_SD_CS > -1
|
||||||
WRITE(ONBOARD_SD_CS, HIGH);
|
OUT_WRITE(ONBOARD_SD_CS, HIGH);
|
||||||
SET_OUTPUT(ONBOARD_SD_CS);
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
USB_Init(); // USB Initialization
|
USB_Init(); // USB Initialization
|
||||||
|
@ -69,8 +69,7 @@ void spiBegin(void) {
|
|||||||
#error "SS_PIN not defined!"
|
#error "SS_PIN not defined!"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
SET_OUTPUT(SS_PIN);
|
OUT_WRITE(SS_PIN, HIGH);
|
||||||
WRITE(SS_PIN, HIGH);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Configure SPI for specified SPI speed */
|
/** Configure SPI for specified SPI speed */
|
||||||
|
@ -81,8 +81,7 @@ void spiBegin(void) {
|
|||||||
#error SS_PIN not defined!
|
#error SS_PIN not defined!
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
SET_OUTPUT(SS_PIN);
|
OUT_WRITE(SS_PIN, HIGH);
|
||||||
WRITE(SS_PIN, HIGH);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Configure SPI for specified SPI speed */
|
/** Configure SPI for specified SPI speed */
|
||||||
|
Loading…
Reference in New Issue
Block a user