Files
hpw421/component/xc6xx_drivers/Drivers/xc_driver/xc_drv_systick.h
T
2026-06-06 16:49:48 +08:00

51 lines
1.3 KiB
C

/*
* @Descripttion:
* @version:
* @Author: sueRimn
* @Date: 2024-05-10 09:47:53
* @LastEditors: sueRimn
* @LastEditTime: 2024-05-10 09:50:47
*/
/*!
* \file xc_drv_systick.h
*
* \brief The header of xc_drv_systick.c
*
* \copyright Revised BSD License, see section \ref LICENSE.
*
* \code
*
* _ __ _ ________ _
* | |/ /(_)___ / ____/ /_ (_)___
* | // / __ \/ / / __ \/ / __ \
* / |/ / / / / /___/ / / / / /_/ /
* /_/|_/_/_/ /_/\____/_/ /_/_/ .___/
* /_/
* (C) 2022-2025 XinChip
*
* \endcode
*
* \author ( XinChip ) Alex-J
*
* \author ( XinChip )
*/
#ifndef _XC_DRV_SYSTICK_H_
#define _XC_DRV_SYSTICK_H_
/*-----------------------------------------------------------------------------------
INCLUDE HEADE FILES
------------------------------------------------------------------------------------*/
#include "xc6xxx.h"
/*------------------------------------------------------------------------------------
Exported Functions
-------------------------------------------------------------------------------------*/
void delay_us(uint32_t nus);
void delay_ms(uint32_t nms);
void systick_callback(void);
#endif /* _XC_DRV_SYSTICK_H_ */