hard_system_delay.h 229 B

1234567891011
  1. #ifndef __HARD_SYSTEM_DELAY_H
  2. #define __HARD_SYSTEM_DELAY_H
  3. #include <stdint.h>
  4. void system_delay_init(uint8_t SYSCLK);
  5. void system_delay_ms(uint32_t nms);
  6. void system_delay_us(uint32_t nus);
  7. void cpu_delay_test(void);
  8. #endif