Documentation-related fixes.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_17.6.x@10247 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
21ab9a6da0
commit
9e3b4d36d1
|
@ -116,7 +116,7 @@ void qspi_lld_stop(QSPIDriver *qspip) {
|
||||||
* @post At the end of the operation the configured callback is invoked.
|
* @post At the end of the operation the configured callback is invoked.
|
||||||
*
|
*
|
||||||
* @param[in] qspip pointer to the @p QSPIDriver object
|
* @param[in] qspip pointer to the @p QSPIDriver object
|
||||||
* @param[in] cmd pointer to the command descriptor
|
* @param[in] cmdp pointer to the command descriptor
|
||||||
*
|
*
|
||||||
* @notapi
|
* @notapi
|
||||||
*/
|
*/
|
||||||
|
@ -131,7 +131,7 @@ void qspi_lld_command(QSPIDriver *qspip, const qspi_command_t *cmdp) {
|
||||||
* @post At the end of the operation the configured callback is invoked.
|
* @post At the end of the operation the configured callback is invoked.
|
||||||
*
|
*
|
||||||
* @param[in] qspip pointer to the @p QSPIDriver object
|
* @param[in] qspip pointer to the @p QSPIDriver object
|
||||||
* @param[in] cmd pointer to the command descriptor
|
* @param[in] cmdp pointer to the command descriptor
|
||||||
* @param[in] n number of bytes to send
|
* @param[in] n number of bytes to send
|
||||||
* @param[in] txbuf the pointer to the transmit buffer
|
* @param[in] txbuf the pointer to the transmit buffer
|
||||||
*
|
*
|
||||||
|
@ -151,7 +151,7 @@ void qspi_lld_send(QSPIDriver *qspip, const qspi_command_t *cmdp,
|
||||||
* @post At the end of the operation the configured callback is invoked.
|
* @post At the end of the operation the configured callback is invoked.
|
||||||
*
|
*
|
||||||
* @param[in] qspip pointer to the @p QSPIDriver object
|
* @param[in] qspip pointer to the @p QSPIDriver object
|
||||||
* @param[in] cmd pointer to the command descriptor
|
* @param[in] cmdp pointer to the command descriptor
|
||||||
* @param[in] n number of bytes to send
|
* @param[in] n number of bytes to send
|
||||||
* @param[out] rxbuf the pointer to the receive buffer
|
* @param[out] rxbuf the pointer to the receive buffer
|
||||||
*
|
*
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @file wdg_lld.c
|
* @file hal_wdg_lld.c
|
||||||
* @brief WDG Driver subsystem low level driver source template.
|
* @brief WDG Driver subsystem low level driver source template.
|
||||||
*
|
*
|
||||||
* @addtogroup WDG
|
* @addtogroup WDG
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @file wdg_lld.h
|
* @file hal_wdg_lld.h
|
||||||
* @brief WDG Driver subsystem low level driver header template.
|
* @brief WDG Driver subsystem low level driver header template.
|
||||||
*
|
*
|
||||||
* @addtogroup WDG
|
* @addtogroup WDG
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @file chmem.h
|
* @file chalign.h
|
||||||
* @brief Memory alignment macros and structures.
|
* @brief Memory alignment macros and structures.
|
||||||
*
|
*
|
||||||
* @addtogroup mem
|
* @addtogroup mem
|
||||||
|
|
|
@ -208,7 +208,7 @@ void chDbgWriteTrace(void *up1, void *up2) {
|
||||||
/**
|
/**
|
||||||
* @brief Suspends one or more trace events.
|
* @brief Suspends one or more trace events.
|
||||||
*
|
*
|
||||||
* @paramin mask mask of the trace events to be suspended
|
* @param[in] mask mask of the trace events to be suspended
|
||||||
*
|
*
|
||||||
* @iclass
|
* @iclass
|
||||||
*/
|
*/
|
||||||
|
@ -222,7 +222,7 @@ void chDbgSuspendTraceI(uint16_t mask) {
|
||||||
/**
|
/**
|
||||||
* @brief Suspends one or more trace events.
|
* @brief Suspends one or more trace events.
|
||||||
*
|
*
|
||||||
* @paramin mask mask of the trace events to be suspended
|
* @param[in] mask mask of the trace events to be suspended
|
||||||
*
|
*
|
||||||
* @api
|
* @api
|
||||||
*/
|
*/
|
||||||
|
@ -236,7 +236,7 @@ void chDbgSuspendTrace(uint16_t mask) {
|
||||||
/**
|
/**
|
||||||
* @brief Resumes one or more trace events.
|
* @brief Resumes one or more trace events.
|
||||||
*
|
*
|
||||||
* @paramin mask mask of the trace events to be resumed
|
* @param[in] mask mask of the trace events to be resumed
|
||||||
*
|
*
|
||||||
* @iclass
|
* @iclass
|
||||||
*/
|
*/
|
||||||
|
@ -250,7 +250,7 @@ void chDbgResumeTraceI(uint16_t mask) {
|
||||||
/**
|
/**
|
||||||
* @brief Resumes one or more trace events.
|
* @brief Resumes one or more trace events.
|
||||||
*
|
*
|
||||||
* @paramin mask mask of the trace events to be resumed
|
* @param[in] mask mask of the trace events to be resumed
|
||||||
*
|
*
|
||||||
* @api
|
* @api
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue