11 lines
199 B
C
11 lines
199 B
C
#ifndef SAMPLING_H_
|
|
#define SAMPLING_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
#define ADC_BUFFER_SIZE 2048 // size must be a power of 2
|
|
|
|
// initialize ADC and ISR
|
|
void start_sampler(void);
|
|
|
|
#endif /* SAMPLING_H_ */
|