delay.h 182 B

12345678910
  1. #ifndef DELAY_H
  2. #define DELAY_H
  3. #include "stdint.h"
  4. void Delay_Init(void); //函数声明
  5. void Delay_Us(uint16_t us); //函数声明
  6. void Delay_Ms(uint16_t ms); //函数声明
  7. #endif