ihsm-strain-gage-controller-fw/include/adc.h
2023-05-03 17:51:01 +02:00

19 lines
288 B
C

#ifndef __ADC_H__
#define __ADC_H__
#include <global.h>
struct adc_state {
uint8_t txbuf[12];
uint8_t rxbuf[12];
uint32_t dma_ccr3;
int32_t data[2];
bool has_adc;
ErrorCode error;
};
extern struct adc_state st_adc;
void adc_init(void);
#endif /* __ADC_H__ */