rtconfig.h 4.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
/* RT-Thread config file */
#ifndef __RTTHREAD_CFG_H__
#define __RTTHREAD_CFG_H__

/* RT_NAME_MAX*/
#define RT_NAME_MAX	8

/* 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 66
#define RT_USING_DEVICE

/* SECTION: Console options */
67
/* the buffer size of console */
68 69
#define RT_CONSOLEBUF_SIZE	128

70
/* SECTION: finsh, a C-Express shell */
71 72 73 74
/* Using FinSH as Shell*/
#define RT_USING_FINSH

/* SECTION: a runtime libc library */
75
/* a runtime libc library */
B
bernard.xiong 已提交
76
/* #define RT_USING_NEWLIB */
77 78 79 80

/* SECTION: a mini libc */

/* SECTION: C++ support */
81
/* Using C++ support */
82 83 84
/* #define RT_USING_CPLUSPLUS */

/* SECTION: Device filesystem support */
85
/* using DFS support */
qiuyiuestc's avatar
qiuyiuestc 已提交
86
#define RT_USING_DFS
B
bernard.xiong 已提交
87
#define RT_USING_DFS_ELMFATFS
88
/* #define RT_USING_DFS_YAFFS2 */
89

qiuyiuestc's avatar
qiuyiuestc 已提交
90
/* #define DFS_USING_WORKDIR */
91 92

/* the max number of mounted filesystem */
qiuyiuestc's avatar
qiuyiuestc 已提交
93
#define DFS_FILESYSTEMS_MAX		2
94 95 96 97 98 99
/* the max number of opened files 		*/
#define DFS_FD_MAX					16
/* the max number of cached sector 		*/
#define DFS_CACHE_MAX_NUM   		4

/* SECTION: lwip, a lighwight TCP/IP protocol stack */
100
/* Using lighweight TCP/IP protocol stack */
B
bernard.xiong 已提交
101
#define RT_USING_LWIP
102 103
#define RT_LWIP_DNS

104
/* Trace LwIP protocol */
105 106
/* #define RT_LWIP_DEBUG */

107
/* Enable ICMP protocol */
108 109
#define RT_LWIP_ICMP

110
/* Enable IGMP protocol */
111 112
#define RT_LWIP_IGMP

113
/* Enable UDP protocol */
114 115
#define RT_LWIP_UDP

116
/* Enable TCP protocol */
117 118 119 120 121
#define RT_LWIP_TCP

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

122
/* TCP sender buffer space */
qiuyiuestc's avatar
qiuyiuestc 已提交
123 124 125 126
#define RT_LWIP_TCP_SND_BUF	1024*10

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

128
/* Enable SNMP protocol */
129 130
/* #define RT_LWIP_SNMP */

131
/* Using DHCP */
132 133 134 135
/* #define RT_LWIP_DHCP */

#define RT_LWIP_DNS

136
/* ip address of target */
137 138
#define RT_LWIP_IPADDR0	192
#define RT_LWIP_IPADDR1	168
139
#define RT_LWIP_IPADDR2	1
140 141
#define RT_LWIP_IPADDR3	30

142
/* gateway address of target */
143 144
#define RT_LWIP_GWADDR0	192
#define RT_LWIP_GWADDR1	168
145
#define RT_LWIP_GWADDR2	1
146 147
#define RT_LWIP_GWADDR3	1

148
/* mask address of target */
149 150 151 152 153
#define RT_LWIP_MSKADDR0	255
#define RT_LWIP_MSKADDR1	255
#define RT_LWIP_MSKADDR2	255
#define RT_LWIP_MSKADDR3	0

154
/* the number of blocks for pbuf */
155 156
#define RT_LWIP_PBUF_NUM	16

157
/* thread priority of tcpip thread */
158 159
#define RT_LWIP_TCPTHREAD_PRIORITY	128

160
/* mail box size of tcpip thread to wait for */
161 162
#define RT_LWIP_TCPTHREAD_MBOX_SIZE	8

163
/* thread stack size of tcpip thread */
164 165
#define RT_LWIP_TCPTHREAD_STACKSIZE	4096

166
/* thread priority of ethnetif thread */
167 168
#define RT_LWIP_ETHTHREAD_PRIORITY	144

169
/* mail box size of ethnetif thread to wait for */
170 171
#define RT_LWIP_ETHTHREAD_MBOX_SIZE	32

172
/* thread stack size of ethnetif thread */
173 174
#define RT_LWIP_ETHTHREAD_STACKSIZE	1024

B
bernard.xiong 已提交
175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
/* 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 */

198
#endif