[AVR] Fix mutex/semaphore macro usage
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_16.1.x@9267 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
b42253538c
commit
713f98a5a7
|
@ -44,8 +44,8 @@
|
|||
/* Derived constants and error checks. */
|
||||
/*===========================================================================*/
|
||||
|
||||
#if !CH_USE_SEMAPHORES
|
||||
#error "the ADC driver requires CH_USE_SEMAPHORES"
|
||||
#if !CH_CFG_USE_SEMAPHORES
|
||||
#error "the ADC driver requires CH_CFG_USE_SEMAPHORES"
|
||||
#endif
|
||||
|
||||
/*===========================================================================*/
|
||||
|
@ -148,12 +148,12 @@ struct ADCDriver {
|
|||
Thread *thread;
|
||||
#endif /* ADC_USE_WAIT */
|
||||
#if ADC_USE_MUTUAL_EXCLUSION || defined(__DOXYGEN__)
|
||||
#if CH_USE_MUTEXES || defined(__DOXYGEN__)
|
||||
#if CH_CFG_USE_MUTEXES || defined(__DOXYGEN__)
|
||||
/**
|
||||
* @brief Mutex protecting the peripheral.
|
||||
*/
|
||||
Mutex mutex;
|
||||
#elif CH_USE_SEMAPHORES
|
||||
#elif CH_CFG_USE_SEMAPHORES
|
||||
Semaphore semaphore;
|
||||
#endif
|
||||
#endif /* ADC_USE_MUTUAL_EXCLUSION */
|
||||
|
|
Loading…
Reference in New Issue