2020-04-10 21:40:33 +08:00
|
|
|
#ifndef RT_CONFIG_H__
|
|
|
|
#define RT_CONFIG_H__
|
|
|
|
|
2021-10-14 14:48:32 +08:00
|
|
|
/* Generated by Kconfiglib (https://github.com/ulfalizer/Kconfiglib) */
|
2020-04-10 21:40:33 +08:00
|
|
|
#define BOARD_MINI2440
|
2013-01-08 22:40:58 +08:00
|
|
|
|
2020-04-10 21:40:33 +08:00
|
|
|
/* RT-Thread Kernel */
|
|
|
|
|
|
|
|
#define RT_NAME_MAX 8
|
|
|
|
#define RT_ALIGN_SIZE 4
|
|
|
|
#define RT_THREAD_PRIORITY_32
|
|
|
|
#define RT_THREAD_PRIORITY_MAX 32
|
|
|
|
#define RT_TICK_PER_SECOND 100
|
|
|
|
#define RT_USING_OVERFLOW_CHECK
|
2013-01-08 22:40:58 +08:00
|
|
|
#define RT_USING_HOOK
|
2020-04-10 21:40:33 +08:00
|
|
|
#define RT_USING_IDLE_HOOK
|
|
|
|
#define RT_IDLE_HOOK_LIST_SIZE 4
|
|
|
|
#define IDLE_THREAD_STACK_SIZE 256
|
|
|
|
#define RT_USING_TIMER_SOFT
|
|
|
|
#define RT_TIMER_THREAD_PRIO 4
|
|
|
|
#define RT_TIMER_THREAD_STACK_SIZE 512
|
2021-06-28 16:29:26 +08:00
|
|
|
|
|
|
|
/* kservice optimization */
|
|
|
|
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of kservice optimization */
|
2020-04-10 21:40:33 +08:00
|
|
|
#define RT_DEBUG
|
|
|
|
|
|
|
|
/* Inter-Thread communication */
|
|
|
|
|
2013-01-08 22:40:58 +08:00
|
|
|
#define RT_USING_SEMAPHORE
|
|
|
|
#define RT_USING_MUTEX
|
|
|
|
#define RT_USING_EVENT
|
|
|
|
#define RT_USING_MAILBOX
|
|
|
|
#define RT_USING_MESSAGEQUEUE
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of Inter-Thread communication */
|
2013-01-08 22:40:58 +08:00
|
|
|
|
2020-04-10 21:40:33 +08:00
|
|
|
/* Memory Management */
|
|
|
|
|
2013-01-08 22:40:58 +08:00
|
|
|
#define RT_USING_MEMPOOL
|
2020-04-10 21:40:33 +08:00
|
|
|
#define RT_USING_MEMHEAP
|
2013-01-08 22:40:58 +08:00
|
|
|
#define RT_USING_SMALL_MEM
|
2020-04-10 21:40:33 +08:00
|
|
|
#define RT_USING_HEAP
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of Memory Management */
|
2013-01-08 22:40:58 +08:00
|
|
|
|
2020-04-10 21:40:33 +08:00
|
|
|
/* Kernel Device Object */
|
2013-01-08 22:40:58 +08:00
|
|
|
|
2020-04-10 21:40:33 +08:00
|
|
|
#define RT_USING_DEVICE
|
2013-01-08 22:40:58 +08:00
|
|
|
#define RT_USING_CONSOLE
|
2020-04-10 21:40:33 +08:00
|
|
|
#define RT_CONSOLEBUF_SIZE 128
|
|
|
|
#define RT_CONSOLE_DEVICE_NAME "uart"
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of Kernel Device Object */
|
2021-06-28 16:29:26 +08:00
|
|
|
#define RT_VER_NUM 0x40004
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of RT-Thread Kernel */
|
2020-04-10 21:40:33 +08:00
|
|
|
#define ARCH_ARM
|
|
|
|
#define ARCH_ARM_ARM9
|
|
|
|
|
|
|
|
/* RT-Thread Components */
|
|
|
|
|
|
|
|
#define RT_USING_COMPONENTS_INIT
|
|
|
|
#define RT_USING_USER_MAIN
|
|
|
|
#define RT_MAIN_THREAD_STACK_SIZE 2048
|
|
|
|
#define RT_MAIN_THREAD_PRIORITY 10
|
|
|
|
|
|
|
|
/* C++ features */
|
|
|
|
|
|
|
|
#define RT_USING_CPLUSPLUS
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of C++ features */
|
2020-04-10 21:40:33 +08:00
|
|
|
|
|
|
|
/* Command shell */
|
2013-01-08 22:40:58 +08:00
|
|
|
|
|
|
|
#define RT_USING_FINSH
|
2021-10-14 14:48:32 +08:00
|
|
|
#define RT_USING_MSH
|
|
|
|
#define FINSH_USING_MSH
|
2020-04-10 21:40:33 +08:00
|
|
|
#define FINSH_THREAD_NAME "tshell"
|
2021-10-14 14:48:32 +08:00
|
|
|
#define FINSH_THREAD_PRIORITY 20
|
|
|
|
#define FINSH_THREAD_STACK_SIZE 4096
|
2020-04-10 21:40:33 +08:00
|
|
|
#define FINSH_USING_HISTORY
|
|
|
|
#define FINSH_HISTORY_LINES 5
|
2013-01-08 22:40:58 +08:00
|
|
|
#define FINSH_USING_SYMTAB
|
2020-04-10 21:40:33 +08:00
|
|
|
#define FINSH_CMD_SIZE 80
|
2021-10-14 14:48:32 +08:00
|
|
|
#define MSH_USING_BUILT_IN_COMMANDS
|
|
|
|
#define FINSH_USING_DESCRIPTION
|
2020-04-10 21:40:33 +08:00
|
|
|
#define FINSH_ARG_MAX 10
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of Command shell */
|
2013-01-08 22:40:58 +08:00
|
|
|
|
2020-04-10 21:40:33 +08:00
|
|
|
/* Device virtual file system */
|
2013-01-08 22:40:58 +08:00
|
|
|
|
|
|
|
#define RT_USING_DFS
|
|
|
|
#define DFS_USING_WORKDIR
|
2020-04-10 21:40:33 +08:00
|
|
|
#define DFS_FILESYSTEMS_MAX 5
|
|
|
|
#define DFS_FILESYSTEM_TYPES_MAX 5
|
|
|
|
#define DFS_FD_MAX 16
|
2013-01-08 22:40:58 +08:00
|
|
|
#define RT_USING_DFS_ELMFAT
|
2020-04-10 21:40:33 +08:00
|
|
|
|
|
|
|
/* elm-chan's FatFs, Generic FAT Filesystem Module */
|
|
|
|
|
|
|
|
#define RT_DFS_ELM_CODE_PAGE 437
|
|
|
|
#define RT_DFS_ELM_WORD_ACCESS
|
|
|
|
#define RT_DFS_ELM_USE_LFN_3
|
|
|
|
#define RT_DFS_ELM_USE_LFN 3
|
2021-06-28 16:29:26 +08:00
|
|
|
#define RT_DFS_ELM_LFN_UNICODE_0
|
|
|
|
#define RT_DFS_ELM_LFN_UNICODE 0
|
2020-04-10 21:40:33 +08:00
|
|
|
#define RT_DFS_ELM_MAX_LFN 255
|
|
|
|
#define RT_DFS_ELM_DRIVES 2
|
|
|
|
#define RT_DFS_ELM_MAX_SECTOR_SIZE 512
|
|
|
|
#define RT_DFS_ELM_REENTRANT
|
2021-10-14 14:48:32 +08:00
|
|
|
#define RT_DFS_ELM_MUTEX_TIMEOUT 3000
|
|
|
|
/* end of elm-chan's FatFs, Generic FAT Filesystem Module */
|
2013-01-08 22:40:58 +08:00
|
|
|
#define RT_USING_DFS_DEVFS
|
2020-04-10 21:40:33 +08:00
|
|
|
#define RT_USING_DFS_RAMFS
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of Device virtual file system */
|
2020-04-10 21:40:33 +08:00
|
|
|
|
|
|
|
/* Device Drivers */
|
|
|
|
|
|
|
|
#define RT_USING_DEVICE_IPC
|
|
|
|
#define RT_PIPE_BUFSZ 512
|
|
|
|
#define RT_USING_SYSTEM_WORKQUEUE
|
|
|
|
#define RT_SYSTEM_WORKQUEUE_STACKSIZE 2048
|
|
|
|
#define RT_SYSTEM_WORKQUEUE_PRIORITY 23
|
|
|
|
#define RT_USING_SERIAL
|
2021-06-28 16:29:26 +08:00
|
|
|
#define RT_USING_SERIAL_V1
|
2020-04-10 21:40:33 +08:00
|
|
|
#define RT_SERIAL_USING_DMA
|
|
|
|
#define RT_SERIAL_RB_BUFSZ 64
|
|
|
|
#define RT_USING_PIN
|
2020-04-11 12:06:40 +08:00
|
|
|
#define RT_USING_SDIO
|
|
|
|
#define RT_SDIO_STACK_SIZE 512
|
|
|
|
#define RT_SDIO_THREAD_PRIORITY 15
|
|
|
|
#define RT_MMCSD_STACK_SIZE 1024
|
|
|
|
#define RT_MMCSD_THREAD_PREORITY 22
|
|
|
|
#define RT_MMCSD_MAX_PARTITION 16
|
2020-04-10 21:40:33 +08:00
|
|
|
|
|
|
|
/* Using USB */
|
|
|
|
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of Using USB */
|
|
|
|
/* end of Device Drivers */
|
2020-04-10 21:40:33 +08:00
|
|
|
|
|
|
|
/* POSIX layer and C standard library */
|
|
|
|
|
|
|
|
#define RT_USING_LIBC
|
|
|
|
#define RT_USING_PTHREADS
|
|
|
|
#define PTHREAD_NUM_MAX 8
|
|
|
|
#define RT_USING_POSIX
|
|
|
|
#define RT_USING_POSIX_MMAP
|
|
|
|
#define RT_USING_POSIX_TERMIOS
|
|
|
|
#define RT_USING_POSIX_AIO
|
2021-10-14 14:48:32 +08:00
|
|
|
#define RT_LIBC_USING_TIME
|
2020-04-10 21:40:33 +08:00
|
|
|
#define RT_USING_MODULE
|
|
|
|
#define RT_USING_CUSTOM_DLMODULE
|
2021-10-14 14:48:32 +08:00
|
|
|
#define RT_LIBC_DEFAULT_TIMEZONE 8
|
|
|
|
/* end of POSIX layer and C standard library */
|
2020-04-10 21:40:33 +08:00
|
|
|
|
|
|
|
/* Network */
|
|
|
|
|
|
|
|
/* Socket abstraction layer */
|
|
|
|
|
|
|
|
#define RT_USING_SAL
|
2021-06-28 16:29:26 +08:00
|
|
|
#define SAL_INTERNET_CHECK
|
2020-04-10 21:40:33 +08:00
|
|
|
|
|
|
|
/* protocol stack implement */
|
|
|
|
|
|
|
|
#define SAL_USING_LWIP
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of protocol stack implement */
|
2020-04-10 21:40:33 +08:00
|
|
|
#define SAL_USING_POSIX
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of Socket abstraction layer */
|
2020-04-10 21:40:33 +08:00
|
|
|
|
|
|
|
/* Network interface device */
|
|
|
|
|
|
|
|
#define RT_USING_NETDEV
|
|
|
|
#define NETDEV_USING_IFCONFIG
|
|
|
|
#define NETDEV_USING_PING
|
|
|
|
#define NETDEV_USING_NETSTAT
|
|
|
|
#define NETDEV_USING_AUTO_DEFAULT
|
|
|
|
#define NETDEV_IPV4 1
|
|
|
|
#define NETDEV_IPV6 0
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of Network interface device */
|
2020-04-10 21:40:33 +08:00
|
|
|
|
|
|
|
/* light weight TCP/IP stack */
|
2013-01-08 22:40:58 +08:00
|
|
|
|
|
|
|
#define RT_USING_LWIP
|
2021-06-28 16:29:26 +08:00
|
|
|
#define RT_USING_LWIP203
|
|
|
|
#define RT_LWIP_MEM_ALIGNMENT 4
|
2020-04-10 21:40:33 +08:00
|
|
|
#define RT_LWIP_IGMP
|
2013-01-08 22:40:58 +08:00
|
|
|
#define RT_LWIP_ICMP
|
2020-04-10 21:40:33 +08:00
|
|
|
#define RT_LWIP_DNS
|
|
|
|
#define RT_LWIP_DHCP
|
|
|
|
#define IP_SOF_BROADCAST 1
|
|
|
|
#define IP_SOF_BROADCAST_RECV 1
|
|
|
|
|
|
|
|
/* Static IPv4 Address */
|
|
|
|
|
|
|
|
#define RT_LWIP_IPADDR "192.168.0.30"
|
|
|
|
#define RT_LWIP_GWADDR "192.168.0.1"
|
|
|
|
#define RT_LWIP_MSKADDR "255.255.255.0"
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of Static IPv4 Address */
|
2013-01-08 22:40:58 +08:00
|
|
|
#define RT_LWIP_UDP
|
|
|
|
#define RT_LWIP_TCP
|
2020-04-10 21:40:33 +08:00
|
|
|
#define RT_LWIP_RAW
|
|
|
|
#define RT_MEMP_NUM_NETCONN 8
|
|
|
|
#define RT_LWIP_PBUF_NUM 16
|
|
|
|
#define RT_LWIP_RAW_PCB_NUM 4
|
|
|
|
#define RT_LWIP_UDP_PCB_NUM 4
|
|
|
|
#define RT_LWIP_TCP_PCB_NUM 4
|
|
|
|
#define RT_LWIP_TCP_SEG_NUM 40
|
|
|
|
#define RT_LWIP_TCP_SND_BUF 8196
|
|
|
|
#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_ETHTHREAD_PRIORITY 12
|
|
|
|
#define RT_LWIP_ETHTHREAD_STACKSIZE 1024
|
|
|
|
#define RT_LWIP_ETHTHREAD_MBOX_SIZE 8
|
|
|
|
#define LWIP_NETIF_STATUS_CALLBACK 1
|
|
|
|
#define LWIP_NETIF_LINK_CALLBACK 1
|
|
|
|
#define SO_REUSE 1
|
|
|
|
#define LWIP_SO_RCVTIMEO 1
|
|
|
|
#define LWIP_SO_SNDTIMEO 1
|
|
|
|
#define LWIP_SO_RCVBUF 1
|
2021-06-28 16:29:26 +08:00
|
|
|
#define LWIP_SO_LINGER 0
|
2020-04-10 21:40:33 +08:00
|
|
|
#define RT_LWIP_NETIF_LOOPBACK
|
|
|
|
#define LWIP_NETIF_LOOPBACK 1
|
|
|
|
#define RT_LWIP_STATS
|
|
|
|
#define RT_LWIP_USING_PING
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of light weight TCP/IP stack */
|
2020-04-10 21:40:33 +08:00
|
|
|
|
|
|
|
/* AT commands */
|
|
|
|
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of AT commands */
|
|
|
|
/* end of Network */
|
2020-04-10 21:40:33 +08:00
|
|
|
|
|
|
|
/* VBUS(Virtual Software BUS) */
|
|
|
|
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of VBUS(Virtual Software BUS) */
|
2020-04-10 21:40:33 +08:00
|
|
|
|
|
|
|
/* Utilities */
|
|
|
|
|
|
|
|
#define RT_USING_RYM
|
|
|
|
#define YMODEM_USING_CRC_TABLE
|
|
|
|
#define YMODEM_USING_FILE_TRANSFER
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of Utilities */
|
|
|
|
/* end of RT-Thread Components */
|
2020-04-10 21:40:33 +08:00
|
|
|
|
2021-06-28 16:29:26 +08:00
|
|
|
/* RT-Thread Utestcases */
|
|
|
|
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of RT-Thread Utestcases */
|
2021-06-28 16:29:26 +08:00
|
|
|
|
2020-04-10 21:40:33 +08:00
|
|
|
/* RT-Thread online packages */
|
|
|
|
|
|
|
|
/* IoT - internet of things */
|
|
|
|
|
|
|
|
|
|
|
|
/* Wi-Fi */
|
|
|
|
|
|
|
|
/* Marvell WiFi */
|
|
|
|
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of Marvell WiFi */
|
2020-04-10 21:40:33 +08:00
|
|
|
|
|
|
|
/* Wiced WiFi */
|
|
|
|
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of Wiced WiFi */
|
|
|
|
/* end of Wi-Fi */
|
2020-04-10 21:40:33 +08:00
|
|
|
|
|
|
|
/* IoT Cloud */
|
|
|
|
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of IoT Cloud */
|
|
|
|
/* end of IoT - internet of things */
|
2020-04-10 21:40:33 +08:00
|
|
|
|
|
|
|
/* security packages */
|
|
|
|
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of security packages */
|
2020-04-10 21:40:33 +08:00
|
|
|
|
|
|
|
/* language packages */
|
|
|
|
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of language packages */
|
2020-04-10 21:40:33 +08:00
|
|
|
|
|
|
|
/* multimedia packages */
|
|
|
|
|
|
|
|
|
2021-10-14 14:48:32 +08:00
|
|
|
/* lvgl: powerful and easy-to-use embedded GUI library */
|
|
|
|
|
|
|
|
/* end of lvgl: powerful and easy-to-use embedded GUI library */
|
|
|
|
|
|
|
|
/* u8g2: a monochrome graphic library */
|
|
|
|
|
|
|
|
/* end of u8g2: a monochrome graphic library */
|
|
|
|
/* end of multimedia packages */
|
|
|
|
|
2020-04-10 21:40:33 +08:00
|
|
|
/* tools packages */
|
|
|
|
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of tools packages */
|
2020-04-10 21:40:33 +08:00
|
|
|
|
|
|
|
/* system packages */
|
|
|
|
|
2021-10-14 14:48:32 +08:00
|
|
|
/* acceleration: Assembly language or algorithmic acceleration packages */
|
|
|
|
|
|
|
|
/* end of acceleration: Assembly language or algorithmic acceleration packages */
|
2020-04-10 21:40:33 +08:00
|
|
|
|
2021-06-28 16:29:26 +08:00
|
|
|
/* Micrium: Micrium software products porting for RT-Thread */
|
|
|
|
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of Micrium: Micrium software products porting for RT-Thread */
|
|
|
|
/* end of system packages */
|
2021-06-28 16:29:26 +08:00
|
|
|
|
2020-04-10 21:40:33 +08:00
|
|
|
/* peripheral libraries and drivers */
|
|
|
|
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of peripheral libraries and drivers */
|
2020-04-10 21:40:33 +08:00
|
|
|
|
2021-06-28 16:29:26 +08:00
|
|
|
/* AI packages */
|
|
|
|
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of AI packages */
|
2021-06-28 16:29:26 +08:00
|
|
|
|
2020-04-10 21:40:33 +08:00
|
|
|
/* miscellaneous packages */
|
|
|
|
|
|
|
|
/* samples: kernel and components samples */
|
|
|
|
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of samples: kernel and components samples */
|
2013-01-08 22:40:58 +08:00
|
|
|
|
2021-06-28 16:29:26 +08:00
|
|
|
/* entertainment: terminal games and other interesting software packages */
|
|
|
|
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of entertainment: terminal games and other interesting software packages */
|
|
|
|
/* end of miscellaneous packages */
|
|
|
|
/* end of RT-Thread online packages */
|
2021-06-28 16:29:26 +08:00
|
|
|
|
2013-01-08 22:40:58 +08:00
|
|
|
#endif
|