You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

22 lines
727 B

/*********************************************************
*Copyright (C), 2017, Shanghai Eastsoft Microelectronics Co., Ltd.
*文件名: systick.h
*作 者: AE Team
*版 本: V1.00
*日 期: 2021/05/13
*描 述: 系统滴答模块程序头文件
*备 注:
本软件仅供学习和演示使用,对用户直接引用代码所带来的风险或后果不承担任何法律责任。
**********************************************************/
#ifndef __SYSTICK_H__
#define __SYSTICK_H__
#include "system_ES8P5066.h"
#include "lib_config.h"
#include "port.h"
void User_SysTickInit(void);
uint32_t get_sys_ticket(void);
uint32_t port_haspassedms(uint32_t ticket);
void port_do_debug_light_state(void);
#endif