diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2018-02-02 10:25:11 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2018-02-02 10:25:11 +0000 |
commit | 241e03a2056224282e880f66ed02b707997dc868 (patch) | |
tree | 82b5c1b9bba408a0aade4422caa9b67f0d2e0fda /os/hal/templates | |
parent | 4f98c8cf4c05dd2f7dc6e5e9e135d012f6aa0ab5 (diff) | |
download | ChibiOS-241e03a2056224282e880f66ed02b707997dc868.tar.gz ChibiOS-241e03a2056224282e880f66ed02b707997dc868.tar.bz2 ChibiOS-241e03a2056224282e880f66ed02b707997dc868.zip |
Documentation fixes.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11425 35acf78f-673a-0410-8e92-d51de3d6d3f4
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) {
|