X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;ds=inline;f=bertos%2Fcpu%2Favr%2Fdrv%2Fadc_avr.c;h=942345a7466538e03a7c13a7a4b57896828afb8d;hb=92d5e5f668bb596036e7c4fe674b29448f7ac65d;hp=fd8525d697d2ad35fa9ff8fa4c52f6e0204dd40d;hpb=c22fe24a0da896a52dbc3882390ec18a440ef56a;p=bertos.git diff --git a/bertos/cpu/avr/drv/adc_avr.c b/bertos/cpu/avr/drv/adc_avr.c index fd8525d6..942345a7 100644 --- a/bertos/cpu/avr/drv/adc_avr.c +++ b/bertos/cpu/avr/drv/adc_avr.c @@ -51,7 +51,7 @@ #define ADC_AVR_AVCC 1 #define ADC_AVR_INT256 2 -#if CONFIG_KERNEL +#if CONFIG_KERN #include #include #include @@ -75,7 +75,7 @@ { sig_signal(adc_process, SIG_ADC_COMPLETE); } -#endif /* CONFIG_KERNEL */ +#endif /* CONFIG_KERN */ /** * Select mux channel \a ch. @@ -104,7 +104,7 @@ INLINE uint16_t adc_hw_read(void) // Start convertion ADCSRA |= BV(ADSC); - #if CONFIG_KERNEL + #if CONFIG_KERN // Ensure IRQs enabled. ASSERT(IRQ_ENABLED()); adc_process = proc_current(); @@ -143,11 +143,11 @@ INLINE void adc_hw_init(void) /* Disable Auto trigger source: ADC in Free running mode. */ ADCSRB = 0; - + /* Enable ADC, disable autotrigger mode. */ ADCSRA = BV(ADEN); - #if CONFIG_KERNEL + #if CONFIG_KERN MOD_CHECK(proc); ADCSRA |= BV(ADIE); #endif