bs_bcu_app/bsp/bsp_delay.h

27 lines
778 B
C
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
****************************************************************************************************
* @file bsp_delay.h
* @author
* @version V1.0
* @date 2024-03-10
* @brief 延时头文件
****************************************************************************************************
*/
#ifndef __DELAY_H
#define __DELAY_H
#include "drv_sys.h"
void delay_init(uint16_t sysclk); /* 初始化延迟函数 */
void delay_ms(uint16_t nms); /* 延时nms */
void delay_us(uint32_t nus); /* 延时nus */
#if (!SYS_SUPPORT_OS) /* 没有使用Systick中断 */
void HAL_Delay(uint32_t Delay); /* HAL库的延时函数SDIO等需要用到 */
#endif
#endif