timer.h 236 B

123456789101112
  1. #ifndef __TIMER_H
  2. #define __TIMER_H
  3. #include "tim.h"
  4. #include "stdbool.h"
  5. extern bool Start_80_hz, Start_10_hz, Start_5_hz, Start_1_hz;
  6. void delay_us(uint16_t us);
  7. void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *htim);
  8. #endif