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.

12 lines
216 B

2 years ago
  1. #pragma once
  2. #include "main.h"
  3. typedef struct
  4. {
  5. TIM_HandleTypeDef *tim_handler;
  6. uint32_t tim_channel;
  7. } encoder_t;
  8. void encoder_all_start(void);
  9. void encoder_all_stop(void);
  10. void encoder_read_printf(void);