diff options
Diffstat (limited to 'os/hal/src/hal_icu.c')
-rw-r--r-- | os/hal/src/hal_icu.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/os/hal/src/hal_icu.c b/os/hal/src/hal_icu.c index 1e8d27bef..67f9955c2 100644 --- a/os/hal/src/hal_icu.c +++ b/os/hal/src/hal_icu.c @@ -186,7 +186,8 @@ void icuStopCapture(ICUDriver *icup) { /**
* @brief Enables notifications.
- * @pre The ICU unit must have been activated using @p icuStart().
+ * @pre The ICU unit must have been activated using @p icuStart() and the
+ * capture started using @p icuStartCapture().
* @note If the notification is already enabled then the call has no effect.
*
* @param[in] icup pointer to the @p ICUDriver object
@@ -206,7 +207,8 @@ void icuEnableNotifications(ICUDriver *icup) { /**
* @brief Disables notifications.
- * @pre The ICU unit must have been activated using @p icuStart().
+ * @pre The ICU unit must have been activated using @p icuStart() and the
+ * capture started using @p icuStartCapture().
* @note If the notification is already disabled then the call has no effect.
*
* @param[in] icup pointer to the @p ICUDriver object
|