18 lines
429 B
C
18 lines
429 B
C
/*******************************************************************************
|
|
* @file timer_routine.h
|
|
* @author CandyPops Co.
|
|
* @version V1.0.0
|
|
* @date 2022-09-05
|
|
* @brief
|
|
******************************************************************************/
|
|
|
|
#ifndef TIMER_ROUTINE_H__
|
|
#define TIMER_ROUTINE_H__
|
|
|
|
void main_timer_start(void);
|
|
void main_timer_stop(void);
|
|
void main_timer_init(void);
|
|
|
|
#endif //TIMER_ROUTINE_H__
|
|
|