13 lines
190 B
C
Executable File
13 lines
190 B
C
Executable File
#ifndef ADC_DMA_H_
|
|
#define ADC_DMA_H_
|
|
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
|
|
void adc121s021_dma_init(void);
|
|
bool adc121s021_dma_get_sample(uint16_t *sample);
|
|
|
|
|
|
#endif /* ADC_DMA_h_ */
|