/****************************************************************************** * Shanghai ChipON Micro-Electronic Co.,Ltd ****************************************************************************** * $ File Name $ : User_SysTick.h * $ Author $ : ChipON AE/FAE Group * $ Data $ : 2023-03-20 * $ HW Version $ : KF32A156-MINI-EVB_V1.2 * $ Description $ : This file provides provides template for * system tick ****************************************************************************** * Copyright (C) by Shanghai ChipON Micro-Electronic Co.,Ltd * All rights reserved. * * This software is copyright protected and proprietary to * Shanghai ChipON Micro-Electronic Co.,Ltd. ****************************************************************************** ****************************************************************************** * REVISON HISTORY ****************************************************************************** * |Data |Version |Author |Description ****************************************************************************** * |2023-03-20 |V3.0 |AE/FAE Group | Rebuild examples *****************************************************************************/ #ifndef USER_SYSTICK_H_ #define USER_SYSTICK_H_ /****************************************************************************** * Functional defineition * ******************************************************************************/ void TimingDelay_Decrement(void); void Systick_Delay(uint32_t delayTime); uint8_t SysTick_Config(uint8_t Frq, uint16_t Reload_ms); #endif /* USER_SYSTICK_H_ */