sc7-testo-firmware/include/adc.h

22 lines
241 B
C

/*
* adc.c: probe, user config, and user IO (switch and button) reading
*
* file creation: 20231016 0102
*/
#ifndef _INC_ADC_H
#define _INC_ADC_H
#include <stdint.h>
void adc_init();
uint8_t adc_next();
#endif /* _INC_ADC_H */