9 lines
105 B
C
9 lines
105 B
C
#ifndef __CORE_DELAY_H__
|
|
#define __CORE_DELAY_H__
|
|
|
|
#include <stdint.h>
|
|
|
|
void delay_ms(uint32_t);
|
|
|
|
#endif
|