update version to 0.2.0

This commit is contained in:
Terrence
2024-09-10 16:04:28 +08:00
parent 3a97934b15
commit 0fc9f551ec
18 changed files with 63 additions and 834 deletions

View File

@@ -1,20 +0,0 @@
#ifndef _SYSTEM_INFO_H_
#define _SYSTEM_INFO_H_
#include <string>
#include "esp_err.h"
#include "freertos/FreeRTOS.h"
class SystemInfo {
public:
static size_t GetFlashSize();
static size_t GetMinimumFreeHeapSize();
static size_t GetFreeHeapSize();
static std::string GetMacAddress();
static std::string GetChipModelName();
static std::string GetJsonString();
static esp_err_t PrintRealTimeStats(TickType_t xTicksToWait);
};
#endif // _SYSTEM_INFO_H_