Initial commit - sync AliceRC to Gitea

This commit is contained in:
2026-08-03 15:54:25 +08:00
commit 493b7d81d7
1510 changed files with 185319 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
/**
* @file delay.h
* @brief 短延时函数
*/
#ifndef __DELAY_H
#define __DELAY_H
#include "stc8h.h"
#include "config.h"
void delay_us(uint16_t us);
void delay_ms(uint16_t ms);
#endif