mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-16 02:19:18 +08:00
13 lines
296 B
C
13 lines
296 B
C
|
#pragma once
|
||
|
|
||
|
#include <errno.h> // we are not using lwIP
|
||
|
|
||
|
// See https://mongoose.ws/documentation/#build-options
|
||
|
#define MG_ARCH MG_ARCH_FREERTOS
|
||
|
#define MG_ENABLE_TCPIP 1
|
||
|
#define MG_ENABLE_DRIVER_STM32H 1
|
||
|
#define MG_IO_SIZE 256
|
||
|
#define MG_ENABLE_CUSTOM_RANDOM 1
|
||
|
#define MG_ENABLE_PACKED_FS 1
|
||
|
|