12 lines
179 B
C
12 lines
179 B
C
#ifndef _TOOL_DELAY_H_
|
|
#define _TOOL_DELAY_H_
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
|
|
void ToolDelayMs(uint32_t Ms);
|
|
void ToolDelayUs(uint32_t Us);
|
|
|
|
#endif
|