diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2011-07-12 04:52:21 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2011-07-12 04:52:21 +0000 |
commit | 065ed4da207173495d0a569b0f2973daebb841f0 (patch) | |
tree | 40967b9fc0fc3f7e0004737077138e9df0748502 /LUFA/Drivers/Peripheral/AVR8 | |
parent | f152ff26c7902a848c798c56adb981861beaf2bf (diff) | |
download | lufa-065ed4da207173495d0a569b0f2973daebb841f0.tar.gz lufa-065ed4da207173495d0a569b0f2973daebb841f0.tar.bz2 lufa-065ed4da207173495d0a569b0f2973daebb841f0.zip |
Added new USB_Host_GetDeviceStatus() function for USB Host mode.
Diffstat (limited to 'LUFA/Drivers/Peripheral/AVR8')
-rw-r--r-- | LUFA/Drivers/Peripheral/AVR8/SPI_AVR8.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/LUFA/Drivers/Peripheral/AVR8/SPI_AVR8.h b/LUFA/Drivers/Peripheral/AVR8/SPI_AVR8.h index 2caacaa00..fd42c5022 100644 --- a/LUFA/Drivers/Peripheral/AVR8/SPI_AVR8.h +++ b/LUFA/Drivers/Peripheral/AVR8/SPI_AVR8.h @@ -183,7 +183,7 @@ /* Switch /SS to input mode after configuration to allow for forced mode changes */ DDRB &= ~(1 << 0); - SPCR = ((1 << SPE) | SPIOptions); + SPCR = ((1 << SPE) | SPIOptions); } /** Turns off the SPI driver, disabling and returning used hardware to their default configuration. */ |