ECE3849/sampling.h
2025-03-27 10:41:57 -04:00

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_ */