You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
228 B

/**
* @file delay.h
* @brief header for waiting functions
*/
#ifndef _DELAY_H
#define _DELAY_H
extern void wait_1us(u_int cnt);
extern void wait_1ms(u_int cnt);
extern void wait_10ms(u_int cnt);
#endif