You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
267 B
C

#include <stddef.h>
#define AVRG 512
#define SUPPLY_VOLTS 3.3
#define REF_OHMS 993.5
#define ADC_0V_COUNT 170
#define ADC_MAX_VOLT 1.95
extern volatile float ch_values[9];
void adc_init(void);
void dma_init(void);
float avrg(uint16_t * values, uint16_t length);