delay.h 151 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