16 lines
267 B
C
16 lines
267 B
C
|
#ifndef _PAINI_H
|
||
|
#define _PAINI_H
|
||
|
|
||
|
#include "main.h"
|
||
|
|
||
|
// 全局变量
|
||
|
extern uint32_t timer_1s_cnt; // 1秒计数器
|
||
|
extern uint32_t timer_1min_cnt; // 1分钟计数器
|
||
|
extern uint32_t timer_1hour_cnt; // 1小时计数器
|
||
|
void Dredge_Control(void);
|
||
|
|
||
|
#endif
|
||
|
|
||
|
|
||
|
|