X-Git-Url: http://git.linex4red.de/pub/lufa.git/blobdiff_plain/0f45b9c8e076483cd546d0bc9c606b73455295c6..ccc82ce74598a00bf484cdec3e186af609efcc50:/LUFA/Drivers/Peripheral/SPI.h diff --git a/LUFA/Drivers/Peripheral/SPI.h b/LUFA/Drivers/Peripheral/SPI.h index c6db9f962..8c38dcc27 100644 --- a/LUFA/Drivers/Peripheral/SPI.h +++ b/LUFA/Drivers/Peripheral/SPI.h @@ -122,6 +122,7 @@ static inline void SPI_Init(const uint8_t SPIOptions) { DDRB |= ((1 << 1) | (1 << 2)); + DDRB &= ((1 << 0) | (1 << 3)); PORTB |= ((1 << 0) | (1 << 3)); SPCR = ((1 << SPE) | SPIOptions);