forked from ccsens_hardware/stc_touch_pen
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.
16 lines
381 B
16 lines
381 B
#ifndef INIT_TIMER0_H
|
|
#define INIT_TIMER0_H
|
|
|
|
#include "../clib/type.h"
|
|
#include "../clib/clib.h"
|
|
#include "../bsp/bsp_config.h"
|
|
#include "../ctask/tick.h"
|
|
#include "../app/app_common.h"
|
|
|
|
extern void L0_timer0_Init(void);
|
|
extern void L0_timer3_start(U16 value);
|
|
extern void L0_timer4_start(U16 value);
|
|
extern void L0_timer3_stop(void);
|
|
extern void L0_timer4_stop(void);
|
|
|
|
#endif
|
|
|