您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

20 行
486 B

/************************************************************************
 * Copyright(c) 2023 Levetop Semiconductor Co.,Led. All rights reserved.
 * @file     delay.c
 * @author   UartTFT Application Team
 * @version  V1.0.0
 * @date     2023-02-24
 * @brief
 *************************************************************************/
 
#ifndef __DELAY_H__
#define __DELAY_H__
#include "type.h"
void delay(vu32 time);
void DelayMS(vu32 delaymS);
void DelayUS(vu32 delayuS);
#endif