delay.h 618 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. / _____) _ | |
  3. ( (____ _____ ____ _| |_ _____ ____| |__
  4. \____ \| ___ | (_ _) ___ |/ ___) _ \
  5. _____) ) ____| | | || |_| ____( (___| | | |
  6. (______/|_____)_|_|_| \__)_____)\____)_| |_|
  7. (C)2013 Semtech
  8. Description: Delay functions implementation
  9. License: Revised BSD License, see LICENSE.TXT file include in the project
  10. Maintainer: Miguel Luis and Gregory Cristian
  11. */
  12. #ifndef __DELAY_H__
  13. #define __DELAY_H__
  14. /*!
  15. * Blocking delay of "s" seconds
  16. */
  17. void Delay( float s );
  18. /*!
  19. * Blocking delay of "ms" milliseconds
  20. */
  21. void DelayMs( uint32_t ms );
  22. #endif // __DELAY_H__