user.c 196 B

1234567891011121314151617
  1. #include "main.h"
  2. #include "user.h"
  3. void User_Init(void) {
  4. //PWMInput_Init();
  5. Dshot_Init(DShot_300);
  6. }
  7. uint16_t ref;
  8. void User_MainLoop(void) {
  9. //ref = PWMInput_Get();
  10. HAL_Delay(100);
  11. }