Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Erik Strand
lufa
Commits
a69a0cbe
Commit
a69a0cbe
authored
Aug 20, 2012
by
Dean Camera
Browse files
Minor documentation improvements.
parent
1cb60c12
Changes
1
Hide whitespace changes
Inline
Side-by-side
LUFA/Drivers/Peripheral/AVR8/Serial_AVR8.h
View file @
a69a0cbe
...
...
@@ -55,10 +55,13 @@
* Serial_Init(9600, false);
*
* // Send a string through the USART
* Serial_TxString("Test String\r\n");
* Serial_SendString("Test String\r\n");
*
* // Send a raw byte through the USART
* Serial_SendByte(0xDC);
*
* // Receive a byte through the USART
*
u
int
8
_t DataByte = Serial_R
x
Byte();
* // Receive a byte through the USART
(or -1 if no data received)
* int
16
_t DataByte = Serial_R
eceive
Byte();
* \endcode
*
* @{
...
...
@@ -116,13 +119,13 @@
#define SERIAL_2X_UBBRVAL(Baud) ((((F_CPU / 8) + (Baud / 2)) / (Baud)) - 1)
/* Function Prototypes: */
/** Transmits a given string located in program space (FLASH) through the USART.
/** Transmits a given
NUL terminated
string located in program space (FLASH) through the USART.
*
* \param[in] FlashStringPtr Pointer to a string located in program space.
*/
void
Serial_SendString_P
(
const
char
*
FlashStringPtr
)
ATTR_NON_NULL_PTR_ARG
(
1
);
/** Transmits a given string located in SRAM memory through the USART.
/** Transmits a given
NUL terminated
string located in SRAM memory through the USART.
*
* \param[in] StringPtr Pointer to a string located in SRAM space.
*/
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment