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.
 
 
 
 
 
 

20 regels
513 B

#ifndef __SYSTICK_DRV_H__
#define __SYSTICK_DRV_H__
#include "type.h"
#include "core_cm4.h"
extern volatile UINT32 g_systickCounter;
/*******************************************************************************
* Function Name  : SysTick_Enable
* Description    : 
* Input          : flag  : TRUE :Open systick  FALSE :Close systick
*
* Output         : 
* Return         : None
******************************************************************************/
extern void SysTick_Enable(bool flag);
#endif