2010-10-16 07:40:44 +08:00
|
|
|
/* RT-Thread config file */
|
|
|
|
#ifndef __RTTHREAD_CFG_H__
|
|
|
|
#define __RTTHREAD_CFG_H__
|
|
|
|
|
|
|
|
/* RT_NAME_MAX*/
|
|
|
|
#define RT_NAME_MAX 10
|
|
|
|
|
|
|
|
/* RT_ALIGN_SIZE*/
|
|
|
|
#define RT_ALIGN_SIZE 4
|
|
|
|
|
|
|
|
/* PRIORITY_MAX */
|
|
|
|
#define RT_THREAD_PRIORITY_MAX 256
|
|
|
|
|
|
|
|
/* Tick per Second */
|
|
|
|
#define RT_TICK_PER_SECOND 100
|
|
|
|
|
|
|
|
/* SECTION: RT_DEBUG */
|
|
|
|
/* Thread Debug */
|
|
|
|
#define RT_DEBUG
|
|
|
|
#define RT_USING_OVERFLOW_CHECK
|
|
|
|
|
|
|
|
/* Using Hook */
|
|
|
|
#define RT_USING_HOOK
|
|
|
|
|
|
|
|
/* Using Software Timer */
|
|
|
|
/* #define RT_USING_TIMER_SOFT */
|
|
|
|
#define RT_TIMER_THREAD_PRIO 4
|
|
|
|
#define RT_TIMER_THREAD_STACK_SIZE 512
|
|
|
|
#define RT_TIMER_TICK_PER_SECOND 10
|
|
|
|
|
|
|
|
/* SECTION: IPC */
|
|
|
|
/* Using Semaphore */
|
|
|
|
#define RT_USING_SEMAPHORE
|
|
|
|
|
|
|
|
/* Using Mutex */
|
|
|
|
#define RT_USING_MUTEX
|
|
|
|
|
|
|
|
/* Using Event */
|
|
|
|
#define RT_USING_EVENT
|
|
|
|
|
|
|
|
/* Using MailBox */
|
|
|
|
#define RT_USING_MAILBOX
|
|
|
|
|
|
|
|
/* Using Message Queue */
|
|
|
|
#define RT_USING_MESSAGEQUEUE
|
|
|
|
|
|
|
|
/* SECTION: Memory Management */
|
|
|
|
/* Using Memory Pool Management*/
|
|
|
|
#define RT_USING_MEMPOOL
|
|
|
|
|
|
|
|
/* Using Dynamic Heap Management */
|
|
|
|
#define RT_USING_HEAP
|
|
|
|
|
|
|
|
/* Using SLAB MM */
|
|
|
|
#define RT_USING_SLAB
|
2010-11-30 22:22:18 +08:00
|
|
|
/* #define RT_USING_SMALL_MEM */
|
2010-10-16 07:40:44 +08:00
|
|
|
|
|
|
|
/* SECTION: Device System */
|
|
|
|
/* Using Device System */
|
|
|
|
#define RT_USING_DEVICE
|
|
|
|
#define RT_USING_UART
|
|
|
|
#define RT_USING_UART1
|
|
|
|
#define RT_UART_RX_BUFFER_SIZE 64
|
|
|
|
|
|
|
|
/* SECTION: Console options */
|
|
|
|
/* the buffer size of console */
|
|
|
|
#define RT_USING_CONSOLE
|
|
|
|
#define RT_CONSOLEBUF_SIZE 128
|
|
|
|
|
2010-11-26 07:36:54 +08:00
|
|
|
/* SECTION: the runtime libc library */
|
|
|
|
/* the runtime libc library */
|
2010-11-30 22:22:18 +08:00
|
|
|
/* #define RT_USING_NEWLIB */
|
|
|
|
/* #define RT_USING_PTHREADS */
|
2010-11-26 07:36:54 +08:00
|
|
|
|
2010-10-16 07:40:44 +08:00
|
|
|
/* SECTION: finsh, a C-Express shell */
|
|
|
|
/* Using FinSH as Shell*/
|
|
|
|
#define RT_USING_FINSH
|
|
|
|
/* Using symbol table */
|
|
|
|
#define FINSH_USING_SYMTAB
|
|
|
|
#define FINSH_USING_DESCRIPTION
|
|
|
|
#define FINSH_DEVICE_NAME "uart"
|
|
|
|
|
|
|
|
/* SECTION: device filesystem support */
|
2010-11-26 07:36:54 +08:00
|
|
|
#define RT_USING_DFS
|
2010-11-30 22:22:18 +08:00
|
|
|
/* #define RT_USING_DFS_ELMFAT */
|
2010-11-26 07:36:54 +08:00
|
|
|
#define RT_USING_DFS_ROMFS
|
2010-11-30 22:22:18 +08:00
|
|
|
/* #define RT_USING_DFS_DEVFS */
|
2010-10-16 07:40:44 +08:00
|
|
|
|
|
|
|
/* the max number of mounted filesystem */
|
|
|
|
#define DFS_FILESYSTEMS_MAX 2
|
|
|
|
/* the max number of opened files */
|
|
|
|
#define DFS_FD_MAX 4
|
|
|
|
/* the max number of cached sector */
|
|
|
|
#define DFS_CACHE_MAX_NUM 4
|
2010-11-30 22:22:18 +08:00
|
|
|
/* Using working directory */
|
|
|
|
#define DFS_USING_WORKDIR
|
2010-10-16 07:40:44 +08:00
|
|
|
|
|
|
|
/* SECTION: lwip, a lighwight TCP/IP protocol stack */
|
|
|
|
/* #define RT_USING_LWIP */
|
|
|
|
#define RT_LWIP_USING_RT_MEM
|
|
|
|
|
|
|
|
/* Enable ICMP protocol*/
|
|
|
|
#define RT_LWIP_ICMP
|
|
|
|
/* Enable UDP protocol*/
|
|
|
|
#define RT_LWIP_UDP
|
|
|
|
/* Enable TCP protocol*/
|
|
|
|
#define RT_LWIP_TCP
|
|
|
|
/* Enable DNS */
|
|
|
|
#define RT_LWIP_DNS
|
|
|
|
|
|
|
|
/* the number of simulatenously active TCP connections*/
|
|
|
|
#define RT_LWIP_TCP_PCB_NUM 5
|
|
|
|
|
|
|
|
/* ip address of target*/
|
|
|
|
#define RT_LWIP_IPADDR0 192
|
|
|
|
#define RT_LWIP_IPADDR1 168
|
|
|
|
#define RT_LWIP_IPADDR2 1
|
|
|
|
#define RT_LWIP_IPADDR3 30
|
|
|
|
|
|
|
|
/* gateway address of target*/
|
|
|
|
#define RT_LWIP_GWADDR0 192
|
|
|
|
#define RT_LWIP_GWADDR1 168
|
|
|
|
#define RT_LWIP_GWADDR2 1
|
|
|
|
#define RT_LWIP_GWADDR3 1
|
|
|
|
|
|
|
|
/* mask address of target*/
|
|
|
|
#define RT_LWIP_MSKADDR0 255
|
|
|
|
#define RT_LWIP_MSKADDR1 255
|
|
|
|
#define RT_LWIP_MSKADDR2 255
|
|
|
|
#define RT_LWIP_MSKADDR3 0
|
|
|
|
|
|
|
|
/* tcp thread options */
|
|
|
|
#define RT_LWIP_TCPTHREAD_PRIORITY 12
|
|
|
|
#define RT_LWIP_TCPTHREAD_MBOX_SIZE 4
|
|
|
|
#define RT_LWIP_TCPTHREAD_STACKSIZE 1024
|
|
|
|
|
|
|
|
/* ethernet if thread options */
|
|
|
|
#define RT_LWIP_ETHTHREAD_PRIORITY 15
|
|
|
|
#define RT_LWIP_ETHTHREAD_MBOX_SIZE 4
|
|
|
|
#define RT_LWIP_ETHTHREAD_STACKSIZE 512
|
|
|
|
|
|
|
|
/* SECTION: RT-Thread/GUI */
|
2011-06-27 13:39:45 +08:00
|
|
|
#define RT_USING_RTGUI
|
2010-10-16 07:40:44 +08:00
|
|
|
|
|
|
|
/* name length of RTGUI object */
|
|
|
|
#define RTGUI_NAME_MAX 12
|
|
|
|
/* support 16 weight font */
|
|
|
|
#define RTGUI_USING_FONT16
|
|
|
|
/* support 12 weight font */
|
|
|
|
#define RTGUI_USING_FONT12
|
|
|
|
/* support Chinese font */
|
|
|
|
#define RTGUI_USING_FONTHZ
|
|
|
|
/* use DFS as file interface */
|
|
|
|
#define RTGUI_USING_DFS_FILERW
|
|
|
|
/* use bmp font as Chinese font */
|
|
|
|
#define RTGUI_USING_HZ_BMP
|
|
|
|
/* use small size in RTGUI */
|
|
|
|
#define RTGUI_USING_SMALL_SIZE
|
|
|
|
/* use mouse cursor */
|
|
|
|
/* #define RTGUI_USING_MOUSE_CURSOR */
|
|
|
|
/* default font size in RTGUI */
|
|
|
|
#define RTGUI_DEFAULT_FONT_SIZE 16
|
|
|
|
|
|
|
|
#endif
|