This led to the effect that e.g. the confirmation messages where not shown. It is somehow related to ESPAsyncWebServer 3.3.0
15 lines
373 B
C++
15 lines
373 B
C++
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
#pragma once
|
|
|
|
#include <ArduinoJson.h>
|
|
#include <cstdint>
|
|
|
|
class Utils {
|
|
public:
|
|
static uint32_t getChipId();
|
|
static uint64_t generateDtuSerial();
|
|
static int getTimezoneOffset();
|
|
static bool checkJsonAlloc(const JsonDocument& doc, const char* function, const uint16_t line);
|
|
static void removeAllFiles();
|
|
};
|