timer.h 152 B

123456789101112
  1. #ifndef __TIMER_H
  2. #define __TIMER_H
  3. #include "stm32f2xx.h"
  4. #include "stm32f2xx_hal.h"
  5. void TIMER_config(void);
  6. void delay_ms(uint32_t nms);
  7. #endif