mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-07-02 05:52:02 +00:00
Minor documentation improvements.
This commit is contained in:
parent
4dbe0176ba
commit
be2df78637
@ -168,7 +168,8 @@
|
|||||||
/** Initializes the USART, ready for serial data transmission and reception. This initializes the interface to
|
/** Initializes the USART, ready for serial data transmission and reception. This initializes the interface to
|
||||||
* standard 8-bit, no parity, 1 stop bit settings suitable for most applications.
|
* standard 8-bit, no parity, 1 stop bit settings suitable for most applications.
|
||||||
*
|
*
|
||||||
* \param[in] BaudRate Serial baud rate, in bits per second.
|
* \param[in] BaudRate Serial baud rate, in bits per second. This should be the target baud rate regardless of the
|
||||||
|
* \c DoubleSpeed parameter's value.
|
||||||
* \param[in] DoubleSpeed Enables double speed mode when set, halving the sample time to double the baud rate.
|
* \param[in] DoubleSpeed Enables double speed mode when set, halving the sample time to double the baud rate.
|
||||||
*/
|
*/
|
||||||
static inline void Serial_Init(const uint32_t BaudRate,
|
static inline void Serial_Init(const uint32_t BaudRate,
|
||||||
|
@ -173,7 +173,8 @@
|
|||||||
* standard 8-bit, no parity, 1 stop bit settings suitable for most applications.
|
* standard 8-bit, no parity, 1 stop bit settings suitable for most applications.
|
||||||
*
|
*
|
||||||
* \param[in,out] USART Pointer to the base of the USART peripheral within the device.
|
* \param[in,out] USART Pointer to the base of the USART peripheral within the device.
|
||||||
* \param[in] BaudRate Serial baud rate, in bits per second.
|
* \param[in] BaudRate Serial baud rate, in bits per second. This should be the target baud rate regardless of
|
||||||
|
* the \c DoubleSpeed parameter's value.
|
||||||
* \param[in] DoubleSpeed Enables double speed mode when set, halving the sample time to double the baud rate.
|
* \param[in] DoubleSpeed Enables double speed mode when set, halving the sample time to double the baud rate.
|
||||||
*/
|
*/
|
||||||
static inline void Serial_Init(USART_t* const USART,
|
static inline void Serial_Init(USART_t* const USART,
|
||||||
|
Loading…
Reference in New Issue
Block a user