Projet voilier 4IRA1 Arnaud Vergnet Marino Benassai Bastien Picco Yohan Simard
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

RFReceiver.c 209B

1234567891011
  1. #include "RFReceiver.h"
  2. void RFReceiver_conf(TIM_TypeDef * timer, int channel)
  3. {
  4. Timer_pwmi_conf(timer, channel);
  5. }
  6. float RFReceiver_getData(TIM_TypeDef * timer)
  7. {
  8. return Timer_pwmi_getDutyCycle(timer);
  9. }