18 lines
302 B
C
18 lines
302 B
C
#ifndef MYRF_H
|
|
#define MYRF_H
|
|
|
|
#include "stm32f103xb.h"
|
|
|
|
#define PinCH1 LL_GPIO_PIN_6
|
|
#define PinCH2 LL_GPIO_PIN_7
|
|
#define GPIOPins GPIOB
|
|
#define TimerCC TIM4
|
|
#define channelCC1 LL_TIM_CHANNEL_CH1
|
|
#define channelCC2 LL_TIM_CHANNEL_CH2
|
|
|
|
|
|
void MyRF_Conf(void);
|
|
|
|
int MyRF_Duty_Cycle_Moteur(void);
|
|
|
|
#endif
|