stm32_ota/ABM开发板(DTU透传APP源码)/YcOS版本/APPV4.0/SYSTEM/SYSTICK/systick.h
2024-12-17 20:03:43 +08:00

46 lines
639 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.

#ifndef __SYSTICK_H
#define __SYSTICK_H
#include "sys.h"
#include "stm32f10x_it.h"
/*****************************************
*供外部使用的常变量
****************************************/
#define TICK_RATE_HZ 100 //systick频率100次tick中断/S
/*****************************************
*对外接口函数声明
****************************************/
extern void SysTick_Init(void) ; //STM32滴答定时器初始化
extern void Delay_Us(u32 nus) ; //us延时函数
extern void Delay_Ms(u32 nms) ; //ms延时函数
#endif