2025-04-16 09:58:09 +08:00
|
|
|
#ifndef _PAINI_H
|
|
|
|
#define _PAINI_H
|
|
|
|
|
|
|
|
#include "main.h"
|
2025-05-20 09:41:22 +08:00
|
|
|
#include "Driver.h"
|
2025-04-16 09:58:09 +08:00
|
|
|
// 全局变量
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
|
|
|