#ifndef __DELAY_H__ #define __DELAY_H__ #include 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__ */