11 lines
209 B
C
11 lines
209 B
C
#include "RFReceiver.h"
|
|
|
|
void RFReceiver_conf(TIM_TypeDef * timer, int channel)
|
|
{
|
|
Timer_pwmi_conf(timer, channel);
|
|
}
|
|
|
|
float RFReceiver_getData(TIM_TypeDef * timer)
|
|
{
|
|
return Timer_pwmi_getDutyCycle(timer);
|
|
}
|