WLG/threadfunc/thread_func.hpp

31 lines
748 B
C++
Raw Normal View History

2024-11-05 15:15:51 +08:00
#include <string>
2024-10-19 16:02:41 +08:00
2024-11-05 15:15:51 +08:00
class LogFileProperty {
public:
std::string name;
long time_stamp;
bool operator<(const LogFileProperty& rhs) const {
return time_stamp > rhs.time_stamp;
}
};
2024-10-19 16:02:41 +08:00
/***********************************
*************线***********
************************************/
2024-10-23 22:25:03 +08:00
void CheckThread(); //循环检测线程
void StartMqttClient(); //启动mqtt服务
void SearchThread(); //组播功能, 提供发现设备功能
void StartCgiServer(); //启动cgi处理服务端
void HeartRep();
void UartStart(); //
void TestUart();
void UartStartWave();
void StartUdpSys(); //组播通信
void GetCSQ();
void Dial5G();
void InitModule();
void RunLED();
2024-10-25 18:50:17 +08:00
void RecvUpdateFile();
2024-11-05 15:15:51 +08:00
void DiskSpaceCheck();