rtconfig.h 4.7 KB
Newer Older
1 2 3 4 5
/* RT-Thread config file */
#ifndef __RTTHREAD_CFG_H__
#define __RTTHREAD_CFG_H__

/* RT_NAME_MAX*/
qiuyiuestc's avatar
qiuyiuestc 已提交
6
#define RT_NAME_MAX	32
7 8 9 10

/* RT_ALIGN_SIZE*/
#define RT_ALIGN_SIZE	4

11
/* PRIORITY_MAX */
12 13
#define RT_THREAD_PRIORITY_MAX	256

14
/* Tick per Second */
15 16 17
#define RT_TICK_PER_SECOND	100

/* SECTION: RT_DEBUG */
18 19
/* Thread Debug */
#define RT_DEBUG
20 21
/* #define RT_THREAD_DEBUG */

22 23 24
#define RT_USING_OVERFLOW_CHECK

/* Using Hook */
25 26
#define RT_USING_HOOK

27 28 29 30 31 32
/* Using Software Timer */
#define RT_USING_TIMER_SOFT
#define RT_TIMER_THREAD_PRIO		8
#define RT_TIMER_THREAD_STACK_SIZE	512
#define RT_TIMER_TICK_PER_SECOND	10

33
/* SECTION: IPC */
34
/* Using Semaphore */
35 36
#define RT_USING_SEMAPHORE

37
/* Using Mutex */
38 39
#define RT_USING_MUTEX

40
/* Using Event */
41 42
#define RT_USING_EVENT

43
/* Using MailBox */
44 45
#define RT_USING_MAILBOX

46
/* Using Message Queue */
47 48 49 50 51 52
#define RT_USING_MESSAGEQUEUE

/* SECTION: Memory Management */
/* Using Memory Pool Management*/
#define RT_USING_MEMPOOL

53
/* Using Dynamic Heap Management */
54 55
#define RT_USING_HEAP

56
/* Using Small MM */
57 58
/* #define RT_USING_SMALL_MEM */

59
/* Using SLAB Allocator */
60 61 62
#define RT_USING_SLAB

/* SECTION: Device System */
63
/* Using Device System */
64 65
#define RT_USING_DEVICE

qiuyiuestc's avatar
qiuyiuestc 已提交
66 67 68
/* Using Module System */
#define RT_USING_MODULE

69
/* SECTION: Console options */
70
/* the buffer size of console */
71 72
#define RT_CONSOLEBUF_SIZE	128

73
/* SECTION: finsh, a C-Express shell */
74 75
/* Using FinSH as Shell*/
#define RT_USING_FINSH
B
bernard.xiong 已提交
76 77 78
/* Using symbol table */
#define FINSH_USING_SYMTAB
#define FINSH_USING_DESCRIPTION
79 80

/* SECTION: a runtime libc library */
81
/* a runtime libc library */
B
bernard.xiong 已提交
82
/* #define RT_USING_NEWLIB */
83 84

/* SECTION: C++ support */
85
/* Using C++ support */
86 87 88
/* #define RT_USING_CPLUSPLUS */

/* SECTION: Device filesystem support */
89
/* using DFS support */
qiuyiuestc's avatar
qiuyiuestc 已提交
90
#define RT_USING_DFS
qiuyiuestc's avatar
qiuyiuestc 已提交
91
#define RT_USING_DFS_ELMFAT
qiuyiuestc's avatar
qiuyiuestc 已提交
92 93 94 95
/* use long file name feature 			*/
#define RT_DFS_ELM_USE_LFN			1
/* the max number of file length 			*/
#define RT_DFS_ELM_MAX_LFN		32		
96
/* #define RT_USING_DFS_YAFFS2 */
97

qiuyiuestc's avatar
qiuyiuestc 已提交
98
/* #define DFS_USING_WORKDIR */
99 100

/* the max number of mounted filesystem */
qiuyiuestc's avatar
qiuyiuestc 已提交
101
#define DFS_FILESYSTEMS_MAX		2
102 103 104 105 106
/* the max number of opened files 		*/
#define DFS_FD_MAX					16
/* the max number of cached sector 		*/
#define DFS_CACHE_MAX_NUM   		4

qiuyiuestc's avatar
qiuyiuestc 已提交
107 108 109
/* Enable freemodbus protocal stack*/
/* #define RT_USING_MODBUS */

110
/* SECTION: lwip, a lighwight TCP/IP protocol stack */
111
/* Using lighweight TCP/IP protocol stack */
B
bernard.xiong 已提交
112
#define RT_USING_LWIP
113 114
#define RT_LWIP_DNS

115
/* Trace LwIP protocol */
116 117
/* #define RT_LWIP_DEBUG */

118
/* Enable ICMP protocol */
119 120
#define RT_LWIP_ICMP

121
/* Enable IGMP protocol */
122 123
#define RT_LWIP_IGMP

124
/* Enable UDP protocol */
125 126
#define RT_LWIP_UDP

127
/* Enable TCP protocol */
128 129 130 131 132
#define RT_LWIP_TCP

/* the number of simulatenously active TCP connections*/
#define RT_LWIP_TCP_PCB_NUM	5

133
/* TCP sender buffer space */
qiuyiuestc's avatar
qiuyiuestc 已提交
134 135 136 137
#define RT_LWIP_TCP_SND_BUF	1024*10

/* TCP receive window. */
#define RT_LWIP_TCP_WND	1024
138

139
/* Enable SNMP protocol */
140 141
/* #define RT_LWIP_SNMP */

142
/* Using DHCP */
143 144 145 146
/* #define RT_LWIP_DHCP */

#define RT_LWIP_DNS

147
/* ip address of target */
148 149
#define RT_LWIP_IPADDR0	192
#define RT_LWIP_IPADDR1	168
150
#define RT_LWIP_IPADDR2	1
151 152
#define RT_LWIP_IPADDR3	30

153
/* gateway address of target */
154 155
#define RT_LWIP_GWADDR0	192
#define RT_LWIP_GWADDR1	168
156
#define RT_LWIP_GWADDR2	1
157 158
#define RT_LWIP_GWADDR3	1

159
/* mask address of target */
160 161 162 163 164
#define RT_LWIP_MSKADDR0	255
#define RT_LWIP_MSKADDR1	255
#define RT_LWIP_MSKADDR2	255
#define RT_LWIP_MSKADDR3	0

165
/* the number of blocks for pbuf */
166 167
#define RT_LWIP_PBUF_NUM	16

168
/* thread priority of tcpip thread */
169 170
#define RT_LWIP_TCPTHREAD_PRIORITY	128

171
/* mail box size of tcpip thread to wait for */
qiuyiuestc's avatar
qiuyiuestc 已提交
172
#define RT_LWIP_TCPTHREAD_MBOX_SIZE	32
173

174
/* thread stack size of tcpip thread */
175 176
#define RT_LWIP_TCPTHREAD_STACKSIZE	4096

177
/* thread priority of ethnetif thread */
178 179
#define RT_LWIP_ETHTHREAD_PRIORITY	144

180
/* mail box size of ethnetif thread to wait for */
181 182
#define RT_LWIP_ETHTHREAD_MBOX_SIZE	32

183
/* thread stack size of ethnetif thread */
184 185
#define RT_LWIP_ETHTHREAD_STACKSIZE	1024

B
bernard.xiong 已提交
186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208
/* SECTION: RTGUI support */
/* using RTGUI support */
#define RT_USING_RTGUI

/* name length of RTGUI object */
#define RTGUI_NAME_MAX		16
/* support 16 weight font */
#define RTGUI_USING_FONT16
/* support 16 weight font */
#define RTGUI_USING_FONT12
/* support Chinese font */
#define RTGUI_USING_FONTHZ
/* use DFS as file interface */
#define RTGUI_USING_DFS_FILERW
/* use font file as Chinese font */
/* #define RTGUI_USING_HZ_FILE */
/* use Chinese bitmap font */
#define RTGUI_USING_HZ_BMP
/* use small size in RTGUI */
/* #define RTGUI_USING_SMALL_SIZE */
/* use mouse cursor */
/* #define RTGUI_USING_MOUSE_CURSOR */

209
#endif