You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

15 lines
268 B

  1. #ifndef ADC_H
  2. #define ADC_H
  3. /* DMA region for the ADC */
  4. extern uint16_t adc_dmabuf[16];
  5. /* Initialize internal ADC */
  6. void adc_init(void);
  7. /* Callback functions */
  8. extern void (*adc_adc_callback)(void);
  9. extern void (*adc_dma_callback)(void);
  10. #endif