10 lines
209 B
C
10 lines
209 B
C
#ifndef MYMOTOR_H
|
|
#define MYMOTOR_H
|
|
#include "stm32f10x.h"
|
|
#include "../driver/gpio.h"
|
|
#include "../driver/timer.h"
|
|
|
|
int MyGirouette_Angle(TIM_TypeDef *TIMX);
|
|
void MyGirouette_Init(TIM_TypeDef *TIMX);
|
|
|
|
#endif
|