colorchord/embeddedstm32f303/adc.h

13 lines
175 B
C
Raw Permalink Normal View History

#ifndef _ADC_H
#define _ADC_H
#include <stdint.h>
2015-07-29 07:56:18 +02:00
#include "ccconfig.h"
#define ADCFS DFREQ
#define ADCOVERSAMP 4
void InitADC();
void ADCCallback( int16_t value );
#endif