// See https://mongoose.ws/documentation/#build-options #pragma once // <<< Use Configuration Wizard in Context Menu >>> // Build environment // Keil MDK // FreeRTOS // CMSIS-RTOS v1 // CMSIS-RTOS v2 // ARM GCC + Newlib #define MG_ARCH MG_ARCH_ARMCC // Enable builtin TCP/IP stack #define MG_ENABLE_TCPIP 1 // Network Drivers for builtin TCP/IP stack // Enable STM23Fxx Ethernet driver #define MG_ENABLE_DRIVER_STM32F 1 // Enable STM32Hxx Ethernet driver #define MG_ENABLE_DRIVER_STM32H 0 // Enable IMXRT Ethernet driver #define MG_ENABLE_DRIVER_IMXRT 0 // Enable W5500 Ethernet driver #define MG_ENABLE_DRIVER_W5500 0 // Enable TI TM4C Ethernet driver #define MG_ENABLE_DRIVER_TM4C 0 // // TLS support // None // Built-in TLS 1.3 stack // MbedTLS #define MG_TLS MG_TLS_NONE // Enable custom mg_millis() #define MG_ENABLE_CUSTOM_MILLIS 1 // Enable custom mg_random() #define MG_ENABLE_CUSTOM_RANDOM 1 // Enable packed (embedded) filesystem #define MG_ENABLE_PACKED_FS 1 // <<< end of configuration section >>> // Add your customization below this comment