projects
/
pub
/
lufa.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Minor documentation improvements.
[pub/lufa.git]
/
LUFA
/
Drivers
/
Peripheral
/
XMEGA
/
Serial_XMEGA.h
diff --git
a/LUFA/Drivers/Peripheral/XMEGA/Serial_XMEGA.h
b/LUFA/Drivers/Peripheral/XMEGA/Serial_XMEGA.h
index
8dd7844
..
7385c80
100644
(file)
--- a/
LUFA/Drivers/Peripheral/XMEGA/Serial_XMEGA.h
+++ b/
LUFA/Drivers/Peripheral/XMEGA/Serial_XMEGA.h
@@
-52,13
+52,13
@@
*
* \code
* // Initialize the serial USART driver before first use, with 9600 baud (and no double-speed mode)
*
* \code
* // Initialize the serial USART driver before first use, with 9600 baud (and no double-speed mode)
- * Serial_Init(&USARTD, 9600, false);
+ * Serial_Init(&USARTD
0
, 9600, false);
*
* // Send a string through the USART
*
* // Send a string through the USART
- * Serial_TxString(&USARTD, "Test String\r\n");
+ * Serial_TxString(&USARTD
0
, "Test String\r\n");
*
* // Receive a byte through the USART
*
* // Receive a byte through the USART
- * uint8_t DataByte = Serial_RxByte(&USARTD);
+ * uint8_t DataByte = Serial_RxByte(&USARTD
0
);
* \endcode
*
* @{
* \endcode
*
* @{