mongoose/examples/arduino/teensy41-http/mongoose_custom.h

12 lines
461 B
C
Raw Normal View History

2023-11-09 01:02:46 +08:00
#pragma once
#define MG_ARCH MG_ARCH_NEWLIB // Use ARM toolchain
#define MG_ENABLE_TCPIP 1 // Enable built-in network stack
2023-11-16 04:13:59 +08:00
#define MG_ENABLE_DRIVER_IMXRT 1 // Enable RTxx driver
2023-11-09 01:02:46 +08:00
#define MG_ENABLE_CUSTOM_MILLIS 1 // Let user implement mg_millis()
#define MG_ENABLE_FILE 0 // Disable POSIX filesystem
#define MG_ENABLE_PACKED_FS 1 // Enable packed filesystem
#define HTTP_URL "http://0.0.0.0"
#define HTTPS_URL "https://0.0.0.0"