forked from xuos/xiuos
Ubiquitous/RT-Thread_Fusion_XiUOS: update the default setting adapt to the webnet
This commit is contained in:
parent
7cbccb7eaf
commit
6133b5de21
|
@ -149,7 +149,7 @@ CONFIG_RT_DFS_ELM_MAX_SECTOR_SIZE=512
|
|||
CONFIG_RT_DFS_ELM_REENTRANT=y
|
||||
CONFIG_RT_DFS_ELM_MUTEX_TIMEOUT=3000
|
||||
CONFIG_RT_USING_DFS_DEVFS=y
|
||||
CONFIG_RT_USING_DFS_ROMFS=y
|
||||
# CONFIG_RT_USING_DFS_ROMFS is not set
|
||||
# CONFIG_RT_USING_DFS_RAMFS is not set
|
||||
# CONFIG_RT_USING_DFS_NFS is not set
|
||||
|
||||
|
@ -284,7 +284,7 @@ CONFIG_RT_LWIP_TCP_SND_BUF=8196
|
|||
CONFIG_RT_LWIP_TCP_WND=8196
|
||||
CONFIG_RT_LWIP_TCPTHREAD_PRIORITY=10
|
||||
CONFIG_RT_LWIP_TCPTHREAD_MBOX_SIZE=8
|
||||
CONFIG_RT_LWIP_TCPTHREAD_STACKSIZE=1024
|
||||
CONFIG_RT_LWIP_TCPTHREAD_STACKSIZE=4096
|
||||
# CONFIG_LWIP_NO_RX_THREAD is not set
|
||||
# CONFIG_LWIP_NO_TX_THREAD is not set
|
||||
CONFIG_RT_LWIP_ETHTHREAD_PRIORITY=12
|
||||
|
@ -359,6 +359,8 @@ CONFIG_BSP_USING_SDIO=y
|
|||
#
|
||||
CONFIG_BSP_USING_SDRAM=y
|
||||
CONFIG_BSP_USING_SDCARD=y
|
||||
# CONFIG_BSP_USB0_HOST is not set
|
||||
# CONFIG_BSP_USB1_HOST is not set
|
||||
CONFIG_BSP_USING_ETH=y
|
||||
CONFIG_BSP_USING_PHY=y
|
||||
CONFIG_PHY_DEVICE_ADDRESS=0
|
||||
|
@ -438,14 +440,34 @@ CONFIG_MAIN_KTASK_STACK_SIZE=1024
|
|||
#
|
||||
# CONFIG_APPLICATION_SENSOR is not set
|
||||
# CONFIG_USING_EMBEDDED_DATABASE_APP is not set
|
||||
# CONFIG_APP_USING_WEBNET is not set
|
||||
CONFIG_APP_USING_WEBNET=y
|
||||
CONFIG_PKG_WEBNET_PATH="/packages/iot/webnet"
|
||||
CONFIG_WEBNET_PORT=80
|
||||
CONFIG_WEBNET_CONN_MAX=16
|
||||
CONFIG_WEBNET_ROOT="/webnet"
|
||||
|
||||
#
|
||||
# Select supported modules
|
||||
#
|
||||
CONFIG_WEBNET_USING_LOG=y
|
||||
CONFIG_WEBNET_USING_AUTH=y
|
||||
CONFIG_WEBNET_USING_CGI=y
|
||||
CONFIG_WEBNET_USING_ASP=y
|
||||
CONFIG_WEBNET_USING_SSI=y
|
||||
CONFIG_WEBNET_USING_INDEX=y
|
||||
CONFIG_WEBNET_USING_ALIAS=y
|
||||
# CONFIG_WEBNET_USING_DAV is not set
|
||||
CONFIG_WEBNET_USING_UPLOAD=y
|
||||
# CONFIG_WEBNET_USING_GZIP is not set
|
||||
CONFIG_WEBNET_CACHE_LEVEL=0
|
||||
CONFIG_WEBNET_USING_SAMPLES=y
|
||||
|
||||
#
|
||||
# lib
|
||||
#
|
||||
CONFIG_APP_SELECT_NEWLIB=y
|
||||
# CONFIG_APP_SELECT_OTHER_LIB is not set
|
||||
# CONFIG_LIB_USING_CJSON is not set
|
||||
CONFIG_LIB_USING_CJSON=y
|
||||
# CONFIG_LIB_USING_QUEUE is not set
|
||||
# CONFIG_LIB_LV is not set
|
||||
|
||||
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -101,7 +101,6 @@
|
|||
#define RT_DFS_ELM_REENTRANT
|
||||
#define RT_DFS_ELM_MUTEX_TIMEOUT 3000
|
||||
#define RT_USING_DFS_DEVFS
|
||||
#define RT_USING_DFS_ROMFS
|
||||
|
||||
/* Device Drivers */
|
||||
|
||||
|
@ -189,7 +188,7 @@
|
|||
#define RT_LWIP_TCP_WND 8196
|
||||
#define RT_LWIP_TCPTHREAD_PRIORITY 10
|
||||
#define RT_LWIP_TCPTHREAD_MBOX_SIZE 8
|
||||
#define RT_LWIP_TCPTHREAD_STACKSIZE 1024
|
||||
#define RT_LWIP_TCPTHREAD_STACKSIZE 4096
|
||||
#define RT_LWIP_ETHTHREAD_PRIORITY 12
|
||||
#define RT_LWIP_ETHTHREAD_STACKSIZE 1024
|
||||
#define RT_LWIP_ETHTHREAD_MBOX_SIZE 8
|
||||
|
@ -276,10 +275,28 @@
|
|||
|
||||
/* sensor app */
|
||||
|
||||
#define APP_USING_WEBNET
|
||||
#define WEBNET_PORT 80
|
||||
#define WEBNET_CONN_MAX 16
|
||||
#define WEBNET_ROOT "/webnet"
|
||||
|
||||
/* Select supported modules */
|
||||
|
||||
#define WEBNET_USING_LOG
|
||||
#define WEBNET_USING_AUTH
|
||||
#define WEBNET_USING_CGI
|
||||
#define WEBNET_USING_ASP
|
||||
#define WEBNET_USING_SSI
|
||||
#define WEBNET_USING_INDEX
|
||||
#define WEBNET_USING_ALIAS
|
||||
#define WEBNET_USING_UPLOAD
|
||||
#define WEBNET_CACHE_LEVEL 0
|
||||
#define WEBNET_USING_SAMPLES
|
||||
|
||||
/* lib */
|
||||
|
||||
#define APP_SELECT_NEWLIB
|
||||
#define LIB_USING_CJSON
|
||||
|
||||
/* LVGL configuration */
|
||||
|
||||
|
|
Loading…
Reference in New Issue