2020-12-05 11:26:32 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#if MG_ARCH == MG_ARCH_ESP32
|
|
|
|
|
2021-03-13 12:34:26 +00:00
|
|
|
#include <ctype.h>
|
2020-12-05 11:26:32 +00:00
|
|
|
#include <dirent.h>
|
2021-03-13 12:34:26 +00:00
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <limits.h>
|
2020-12-05 11:26:32 +00:00
|
|
|
#include <netdb.h>
|
2021-03-13 12:34:26 +00:00
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2021-02-03 02:13:05 +00:00
|
|
|
#include <sys/stat.h>
|
2021-03-13 12:34:26 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <time.h>
|
|
|
|
|
2022-05-16 11:54:26 +01:00
|
|
|
#include <esp_timer.h>
|
|
|
|
|
2021-02-03 02:13:05 +00:00
|
|
|
#define MG_PATH_MAX 128
|
2020-12-05 11:26:32 +00:00
|
|
|
|
|
|
|
#endif
|