mongoose/src/arch.h

58 lines
1.4 KiB
C
Raw Normal View History

2020-12-05 19:26:32 +08:00
#pragma once
#define MG_ARCH_CUSTOM 0
#define MG_ARCH_UNIX 1
#define MG_ARCH_WIN32 2
#define MG_ARCH_ESP32 3
#define MG_ARCH_ESP8266 4
2021-05-11 16:12:06 +08:00
#define MG_ARCH_FREERTOS_TCP 5
2021-05-29 06:49:26 +08:00
#define MG_ARCH_FREERTOS_LWIP 6
2021-09-14 14:28:28 +08:00
#define MG_ARCH_AZURERTOS 7
2022-02-18 16:07:10 +08:00
#define MG_ARCH_RTX_LWIP 8
2022-03-30 14:56:44 +08:00
#define MG_ARCH_ZEPHYR 9
2022-05-01 20:47:33 +08:00
#define MG_ARCH_NEWLIB 10
2022-05-12 15:07:51 +08:00
#define MG_ARCH_RTX 11
2020-12-05 19:26:32 +08:00
#if !defined(MG_ARCH)
2021-05-11 16:12:06 +08:00
#if defined(__unix__) || defined(__APPLE__)
2020-12-05 19:26:32 +08:00
#define MG_ARCH MG_ARCH_UNIX
#elif defined(_WIN32)
#define MG_ARCH MG_ARCH_WIN32
#elif defined(ICACHE_FLASH) || defined(ICACHE_RAM_ATTR)
#define MG_ARCH MG_ARCH_ESP8266
2020-12-27 09:29:42 +08:00
#elif defined(ESP_PLATFORM)
#define MG_ARCH MG_ARCH_ESP32
#elif defined(FREERTOS_IP_H)
#define MG_ARCH MG_ARCH_FREERTOS_TCP
2021-09-14 14:28:28 +08:00
#elif defined(AZURE_RTOS_THREADX)
#define MG_ARCH MG_ARCH_AZURERTOS
2022-03-30 14:56:44 +08:00
#elif defined(__ZEPHYR__)
#define MG_ARCH MG_ARCH_ZEPHYR
2020-12-05 19:26:32 +08:00
#endif
#if !defined(MG_ARCH)
2022-05-12 15:07:51 +08:00
#error "MG_ARCH is not specified and we couldn't guess it. Set -D MG_ARCH=..."
2020-12-05 19:26:32 +08:00
#endif
#endif // !defined(MG_ARCH)
2022-02-11 01:11:03 +08:00
#if defined(__GNUC__) && defined(__arm__)
#define PRINTF_LIKE(f, a) __attribute__((format(printf, f, a)))
#else
#define PRINTF_LIKE(f, a)
#endif
2020-12-05 19:26:32 +08:00
#if MG_ARCH == MG_ARCH_CUSTOM
2022-05-12 15:07:51 +08:00
#include <mongoose_custom.h>
2020-12-05 19:26:32 +08:00
#endif
#include "arch_esp32.h"
#include "arch_esp8266.h"
2021-05-29 06:49:26 +08:00
#include "arch_freertos_lwip.h"
2021-05-12 16:25:21 +08:00
#include "arch_freertos_tcp.h"
2022-05-01 20:47:33 +08:00
#include "arch_newlib.h"
2022-05-12 15:07:51 +08:00
#include "arch_rtx.h"
#include "arch_rtx_lwip.h"
2020-12-05 19:26:32 +08:00
#include "arch_unix.h"
#include "arch_win32.h"
2022-03-30 14:56:44 +08:00
#include "arch_zephyr.h"