14 lines
237 B
C
14 lines
237 B
C
#ifndef __DELAY_H__
|
|
#define __DELAY_H__
|
|
|
|
#include <stdint.h>
|
|
|
|
extern volatile uint32_t tick;
|
|
|
|
/**
|
|
* @brief wait for specific time in ms. May not be caleed from interrupt context
|
|
*/
|
|
void delay_ms(uint32_t ms);
|
|
|
|
#endif /* __DELAY_H__ */
|