延迟函数

This commit is contained in:
2026-02-21 20:09:38 -05:00
parent fe50359314
commit 784c510a0c
2 changed files with 49 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
#ifndef __DELAY_H
#define __DELAY_H
void Delay_us(uint32_t us);
void Delay_ms(uint32_t ms);
void Delay_s(uint32_t s);
#endif