Skip to content

Commit

Permalink
Update doxygen comments in MAX32665 uart.h
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacob-Scheiffler committed Oct 13, 2023
1 parent f1d3fde commit e16c7de
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Libraries/PeriphDrivers/Include/MAX32665/uart.h
Original file line number Diff line number Diff line change
Expand Up @@ -644,6 +644,8 @@ void MXC_UART_DMACallback(int ch, int error);
*
* @param uart The uart
* @param[in] retVal The ret value
*
* @return See \ref MXC_Error_Codes for the list of error return codes.
*/
int MXC_UART_AsyncCallback(mxc_uart_regs_t *uart, int retVal);
int MXC_UART_TxAsyncCallback(mxc_uart_regs_t *uart, int retVal);
Expand All @@ -653,6 +655,8 @@ int MXC_UART_RxAsyncCallback(mxc_uart_regs_t *uart, int retVal);
* @brief stop any async callbacks
*
* @param uart The uart
*
* @return See \ref MXC_Error_Codes for the list of error return codes.
*/
int MXC_UART_AsyncStop(mxc_uart_regs_t *uart);
int MXC_UART_TxAsyncStop(mxc_uart_regs_t *uart);
Expand All @@ -666,6 +670,8 @@ int MXC_UART_RxAsyncStop(mxc_uart_regs_t *uart);
* has been terminated.
*
* @param uart Pointer to UART registers (selects the UART block used.)
*
* @return See \ref MXC_Error_Codes for the list of error return codes.
*/
int MXC_UART_AbortAsync(mxc_uart_regs_t *uart);
int MXC_UART_TxAbortAsync(mxc_uart_regs_t *uart);
Expand Down

0 comments on commit e16c7de

Please sign in to comment.