delay.h 424 B

12345678910111213141516171819
  1. /*
  2. * Copyright (c) 2006-2021, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2021-05-07 Meco Man first Version
  9. */
  10. #ifndef __DELAY_H__
  11. #define __DELAY_H__
  12. void msleep(unsigned int msecs);
  13. void ssleep(unsigned int seconds);
  14. void mdelay(unsigned long msecs);
  15. void udelay(unsigned long usecs);
  16. void ndelay(unsigned long nsecs);
  17. #endif