mirror of
https://github.com/IoTManagerProject/IoTManager.git
synced 2026-03-26 22:22:16 +03:00
17 lines
404 B
C
17 lines
404 B
C
#pragma once
|
|
#include "Global.h"
|
|
#include "WsServer.h"
|
|
#include "utils/TimeUtils.h"
|
|
|
|
#ifdef ESP32
|
|
#include <rom/rtc.h>
|
|
#endif
|
|
|
|
extern void periodicTasksInit();
|
|
extern void printGlobalVarSize();
|
|
|
|
extern void handleError(String errorId, String errorValue);
|
|
extern void handleError(String errorId, int errorValue);
|
|
|
|
extern String ESP_getResetReason(void);
|
|
extern String ESP32GetResetReason(uint32_t cpu_no); |