forked from trocache/RefKEIL
10 lines
148 B
C
10 lines
148 B
C
#ifndef ADCDRIVER_H
|
|
#define ADCDRIVER_H
|
|
#include "stm32f10x.h"
|
|
|
|
typedef struct
|
|
{
|
|
GPIO_TypeDef * ADC; //ADC 1 or 2
|
|
} MyADC_Struct_TypeDef;
|
|
|
|
#endif
|