Oops - fix broken SPI driver due to missing bit inversion on a port mask.
This commit is contained in:
parent
bd337aced3
commit
5517f96e86
1 changed files with 3 additions and 3 deletions
|
|
@ -122,7 +122,7 @@
|
||||||
static inline void SPI_Init(const uint8_t SPIOptions)
|
static inline void SPI_Init(const uint8_t SPIOptions)
|
||||||
{
|
{
|
||||||
DDRB |= ((1 << 1) | (1 << 2));
|
DDRB |= ((1 << 1) | (1 << 2));
|
||||||
DDRB &= ((1 << 0) | (1 << 3));
|
DDRB &= ~((1 << 0) | (1 << 3));
|
||||||
PORTB |= ((1 << 0) | (1 << 3));
|
PORTB |= ((1 << 0) | (1 << 3));
|
||||||
|
|
||||||
SPCR = ((1 << SPE) | SPIOptions);
|
SPCR = ((1 << SPE) | SPIOptions);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue