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.
|
#ifndef _ADC_H_
|
|
#define _ADC_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
extern volatile uint16_t temp_values[4];
|
|
|
|
void adc_init(void);
|
|
|
|
#endif//_ADC_H_
|
|
|