diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2012-05-20 10:55:59 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2012-05-20 10:55:59 +0000 |
commit | f2ae4dc255bd86438cffb62c138326b1c0b5725f (patch) | |
tree | abf1365cd3eebe99c3460c974e988ed606ab9d8c /LUFA/Drivers/Peripheral/XMEGA/Serial_XMEGA.h | |
parent | c9b3468f1e6a13dd71a1ff6ad3fa20a5a5fcb178 (diff) | |
download | lufa-f2ae4dc255bd86438cffb62c138326b1c0b5725f.tar.gz lufa-f2ae4dc255bd86438cffb62c138326b1c0b5725f.tar.bz2 lufa-f2ae4dc255bd86438cffb62c138326b1c0b5725f.zip |
Upgrade Doxygen configuration files for Doxygen 1.8.1, fix broken stylesheet and footer HTML, add explicit spacing into documentation code fragments to prevent Doxygen from removing empty lines in the output.
Diffstat (limited to 'LUFA/Drivers/Peripheral/XMEGA/Serial_XMEGA.h')
-rw-r--r-- | LUFA/Drivers/Peripheral/XMEGA/Serial_XMEGA.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/LUFA/Drivers/Peripheral/XMEGA/Serial_XMEGA.h b/LUFA/Drivers/Peripheral/XMEGA/Serial_XMEGA.h index 283732f0f..c2cb77fd3 100644 --- a/LUFA/Drivers/Peripheral/XMEGA/Serial_XMEGA.h +++ b/LUFA/Drivers/Peripheral/XMEGA/Serial_XMEGA.h @@ -53,10 +53,10 @@ * \code * // Initialize the serial USART driver before first use, with 9600 baud (and no double-speed mode) * Serial_Init(&USARTD0, 9600, false); - * + * * // Send a string through the USART * Serial_TxString(&USARTD0, "Test String\r\n"); - * + * * // Receive a byte through the USART * uint8_t DataByte = Serial_RxByte(&USARTD0); * \endcode |