mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-06-09 18:34:15 +00:00
Oops - fix broken SPI driver due to missing bit inversion on a port mask.
This commit is contained in:
parent
bd337aced3
commit
5517f96e86
@ -121,9 +121,9 @@
|
||||
*/
|
||||
static inline void SPI_Init(const uint8_t SPIOptions)
|
||||
{
|
||||
DDRB |= ((1 << 1) | (1 << 2));
|
||||
DDRB &= ((1 << 0) | (1 << 3));
|
||||
PORTB |= ((1 << 0) | (1 << 3));
|
||||
DDRB |= ((1 << 1) | (1 << 2));
|
||||
DDRB &= ~((1 << 0) | (1 << 3));
|
||||
PORTB |= ((1 << 0) | (1 << 3));
|
||||
|
||||
SPCR = ((1 << SPE) | SPIOptions);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user