TP_Voilier/Drivers/MyADC.h
2022-10-21 16:01:27 +02:00

12 lines
189 B
C

#ifndef __MYADC_H
#define __MYADC_H
#include "stm32f10x.h"
// initialise tout ce au'il y a a faire pour l'ADC:
void initADC(int channel);
void startADC(void);
int read(void);
#endif