diff options
Diffstat (limited to 'os/hal/templates')
-rw-r--r-- | os/hal/templates/hal_dac_lld.h | 4 | ||||
-rw-r--r-- | os/hal/templates/hal_wdg_lld.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/os/hal/templates/hal_dac_lld.h b/os/hal/templates/hal_dac_lld.h index 59b5b2b09..541ddc535 100644 --- a/os/hal/templates/hal_dac_lld.h +++ b/os/hal/templates/hal_dac_lld.h @@ -98,11 +98,11 @@ typedef enum { typedef void (*daccallback_t)(DACDriver *dacp, dacsample_t *buffer, size_t n);
/**
- * @brief ADC error callback type.
+ * @brief DAC error callback type.
*
* @param[in] dacp pointer to the @p DACDriver object triggering the
* callback
- * @param[in] err ADC error code
+ * @param[in] err DAC error code
*/
typedef void (*dacerrorcallback_t)(DACDriver *dacp, dacerror_t err);
diff --git a/os/hal/templates/hal_wdg_lld.c b/os/hal/templates/hal_wdg_lld.c index bec02ece4..0ec0e2d92 100644 --- a/os/hal/templates/hal_wdg_lld.c +++ b/os/hal/templates/hal_wdg_lld.c @@ -80,7 +80,7 @@ void wdg_lld_start(WDGDriver *wdgp) { *
* @param[in] wdgp pointer to the @p WDGDriver object
*
- * @api
+ * @notapi
*/
void wdg_lld_stop(WDGDriver *wdgp) {
|