56 lines
1.2 KiB
Plaintext
56 lines
1.2 KiB
Plaintext
# Generic IP stack options and features
|
|
CONFIG_NETWORKING=y
|
|
CONFIG_NET_UDP=n
|
|
CONFIG_NET_TCP=y
|
|
CONFIG_NET_IPV6=y
|
|
CONFIG_NET_IPV4=y
|
|
#CONFIG_NET_DHCPV4=y
|
|
CONFIG_ENTROPY_GENERATOR=y
|
|
CONFIG_TEST_RANDOM_GENERATOR=y
|
|
CONFIG_INIT_STACKS=y
|
|
CONFIG_NET_MAX_CONTEXTS=8
|
|
CONFIG_NET_SHELL=y
|
|
|
|
# Number of network buffers
|
|
CONFIG_NET_PKT_RX_COUNT=16
|
|
CONFIG_NET_PKT_TX_COUNT=16
|
|
CONFIG_NET_BUF_RX_COUNT=16
|
|
CONFIG_NET_BUF_TX_COUNT=16
|
|
CONFIG_NET_CONTEXT_NET_PKT_POOL=y
|
|
|
|
# IPv6 address counts
|
|
CONFIG_NET_IF_UNICAST_IPV6_ADDR_COUNT=3
|
|
CONFIG_NET_IF_MCAST_IPV6_ADDR_COUNT=4
|
|
|
|
# Network application settings
|
|
CONFIG_NET_APP=y
|
|
CONFIG_NET_APP_SETTINGS=y
|
|
CONFIG_NET_APP_NEED_IPV6=y
|
|
CONFIG_NET_APP_NEED_IPV4=y
|
|
CONFIG_NET_APP_MY_IPV6_ADDR="2001:db8::1"
|
|
CONFIG_NET_APP_MY_IPV4_ADDR="192.0.2.1"
|
|
|
|
# HTTP & Websocket options
|
|
CONFIG_WEBSOCKET=y
|
|
CONFIG_HTTP=y
|
|
CONFIG_HTTPS=n
|
|
CONFIG_HTTP_SERVER=y
|
|
# How many URLs we are serving
|
|
CONFIG_HTTP_SERVER_NUM_URLS=5
|
|
|
|
# sha1 support needed by websocket
|
|
CONFIG_MBEDTLS=y
|
|
CONFIG_MBEDTLS_BUILTIN=y
|
|
|
|
# Logging
|
|
CONFIG_NET_LOG=y
|
|
CONFIG_SYS_LOG_NET_LEVEL=4
|
|
CONFIG_SYS_LOG_SHOW_COLOR=y
|
|
CONFIG_NET_STATISTICS=y
|
|
|
|
# Debugging
|
|
CONFIG_NET_DEBUG_WEBSOCKET=y
|
|
CONFIG_NET_DEBUG_HTTP=y
|
|
CONFIG_NET_DEBUG_APP=n
|
|
CONFIG_NET_DEBUG_NET_PKT=y
|