Skip to content
Snippets Groups Projects
Commit 5517f96e authored by Dean Camera's avatar Dean Camera
Browse files

Oops - fix broken SPI driver due to missing bit inversion on a port mask.

parent bd337ace
No related branches found
No related tags found
No related merge requests found
...@@ -121,9 +121,9 @@ ...@@ -121,9 +121,9 @@
*/ */
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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment