新增http、mqtt运行库,实现mqtt功能, 新增spdlog

This commit is contained in:
lixiaoyuan
2025-09-01 20:08:40 +08:00
parent e0b64a20c4
commit 94e467b65e
245 changed files with 54182 additions and 117 deletions

View File

@@ -90,9 +90,9 @@ class TimeTick
public:
int64_t tickMS_ = 0;
TimeTick()
TimeTick(int t=0)
{
tickMS_ = Utils::time();
if (t !=0) { tickMS_ = Utils::time(); }
}
bool elapse(int64_t ms, bool reset = true)