diff options
-rw-r--r-- | os/hal/include/adc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/os/hal/include/adc.h b/os/hal/include/adc.h index 7db0f7641..91ab638e1 100644 --- a/os/hal/include/adc.h +++ b/os/hal/include/adc.h @@ -64,8 +64,8 @@ /* Derived constants and error checks. */
/*===========================================================================*/
-#if ADC_USE_WAIT && !CH_USE_SEMAPHORES
-#error "ADC driver requires CH_USE_SEMAPHORES when ADC_USE_WAIT is enabled"
+#if ADC_USE_WAIT && !CH_USE_MUTEXES && !CH_USE_SEMAPHORES
+#error "ADC_USE_WAIT requires CH_USE_MUTEXES and/or CH_USE_SEMAPHORES"
#endif
/*===========================================================================*/
|