delay.h 173 B

123456789
  1. #ifndef __DELAY_H
  2. #define __DELAY_H
  3. #include "stm32f10x.h"
  4. #include "stdint.h"
  5. void delay_us(uint16_t nus);
  6. void TIM3_Int_Init(uint16_t arr,uint16_t psc);
  7. #endif