aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/Peripheral/XMEGA/SerialSPI_XMEGA.h
diff options
context:
space:
mode:
authorDrashna Jael're <drashna@live.com>2019-09-06 15:53:07 -0700
committerDrashna Jael're <drashna@live.com>2019-09-06 15:53:07 -0700
commit0dfd13588686bb5e3da0eab99b2426261c3b4d14 (patch)
treea26927541c77349244d2bc043f7795eb41f2e068 /LUFA/Drivers/Peripheral/XMEGA/SerialSPI_XMEGA.h
parentce10f7642b0459e409839b23cc91498945119b4d (diff)
parent6d9077370b613e9bf26d5d5e03481258873efa02 (diff)
downloadlufa-0dfd13588686bb5e3da0eab99b2426261c3b4d14.tar.gz
lufa-0dfd13588686bb5e3da0eab99b2426261c3b4d14.tar.bz2
lufa-0dfd13588686bb5e3da0eab99b2426261c3b4d14.zip
Merge in changes from upstream
Diffstat (limited to 'LUFA/Drivers/Peripheral/XMEGA/SerialSPI_XMEGA.h')
-rw-r--r--LUFA/Drivers/Peripheral/XMEGA/SerialSPI_XMEGA.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/LUFA/Drivers/Peripheral/XMEGA/SerialSPI_XMEGA.h b/LUFA/Drivers/Peripheral/XMEGA/SerialSPI_XMEGA.h
index 8d91baa20..dff500ec1 100644
--- a/LUFA/Drivers/Peripheral/XMEGA/SerialSPI_XMEGA.h
+++ b/LUFA/Drivers/Peripheral/XMEGA/SerialSPI_XMEGA.h
@@ -97,28 +97,28 @@
/* Public Interface - May be used in end-application: */
/* Macros: */
/** \name SPI SCK Polarity Configuration Masks */
- //@{
+ /**@{*/
/** SPI clock polarity mask for \ref SerialSPI_Init(). Indicates that the SCK should lead on the rising edge. */
#define USART_SPI_SCK_LEAD_RISING 0
- //@}
+ /**@}*/
/** \name SPI Sample Edge Configuration Masks */
- //@{
+ /**@{*/
/** SPI data sample mode mask for \ref SerialSPI_Init(). Indicates that the data should sampled on the leading edge. */
#define USART_SPI_SAMPLE_LEADING 0
/** SPI data sample mode mask for \ref SerialSPI_Init(). Indicates that the data should be sampled on the trailing edge. */
#define USART_SPI_SAMPLE_TRAILING (1 << 1)
- //@}
+ /**@}*/
/** \name SPI Data Ordering Configuration Masks */
- //@{
+ /**@{*/
/** SPI data order mask for \ref SerialSPI_Init(). Indicates that data should be shifted out MSB first. */
#define USART_SPI_ORDER_MSB_FIRST 0
/** SPI data order mask for \ref SerialSPI_Init(). Indicates that data should be shifted out LSB first. */
#define USART_SPI_ORDER_LSB_FIRST (1 << 2)
- //@}
+ /**@}*/
/* Inline Functions: */
/** Initialize the USART module in Master SPI mode.