123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- /* 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 8
- /* PRIORITY_MAX */
- #define RT_THREAD_PRIORITY_MAX 32
- /* 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
- #define IDLE_THREAD_STACK_SIZE 1024
- /* 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 Small MM */
- #define RT_USING_SMALL_MEM
- /* "Using Device Driver Framework" default="true" */
- #define RT_USING_DEVICE
- /* Using IPC in Device Driver Framework" default="true" */
- #define RT_USING_DEVICE_IPC
- /* Using Serial Device Driver Framework" default="true" */
- #define RT_USING_SERIAL
- // <section name="RT_USING_COMPONENTS_INIT" description="Using components init" default="false" >
- #define RT_USING_COMPONENTS_INIT
- // </section>
- /* SECTION: Console options */
- #define RT_USING_CONSOLE
- /* the buffer size of console*/
- #define RT_CONSOLEBUF_SIZE 128
- /* SECTION: finsh, a C-Express shell */
- #define RT_USING_FINSH
- /* Using symbol table */
- #define FINSH_USING_SYMTAB
- #define FINSH_USING_DESCRIPTION
- /* SECTION: device filesystem */
- /* #define RT_USING_DFS */
- //#define RT_USING_DFS_ELMFAT
- #define RT_DFS_ELM_WORD_ACCESS
- /* Reentrancy (thread safe) of the FatFs module. */
- #define RT_DFS_ELM_REENTRANT
- /* Number of volumes (logical drives) to be used. */
- #define RT_DFS_ELM_DRIVES 2
- /* #define RT_DFS_ELM_USE_LFN 1 */
- #define RT_DFS_ELM_MAX_LFN 255
- /* Maximum sector size to be handled. */
- #define RT_DFS_ELM_MAX_SECTOR_SIZE 512
- #define RT_USING_DFS_ROMFS
- /* the max number of mounted filesystem */
- #define DFS_FILESYSTEMS_MAX 2
- /* the max number of opened files */
- #define DFS_FD_MAX 4
- /* SECTION: lwip, a lighwight TCP/IP protocol stack */
- #define RT_USING_LWIP
- /* Enable LwIP debug output */
- //#define RT_LWIP_DEBUG
- /* 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_IPADDR "192.168.1.201"
- /* gateway address of target */
- #define RT_LWIP_GWADDR "192.168.1.1"
- /* mask address of target */
- #define RT_LWIP_MSKADDR "255.255.255.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
- /* TCP sender buffer space */
- #define RT_LWIP_TCP_SND_BUF 8192
- /* TCP receive window. */
- #define RT_LWIP_TCP_WND 8192
- #define CHECKSUM_CHECK_TCP 0
- #define CHECKSUM_CHECK_IP 0
- #define CHECKSUM_CHECK_UDP 0
- #define CHECKSUM_GEN_TCP 1
- #define CHECKSUM_GEN_IP 1
- #define CHECKSUM_GEN_UDP 1
- #endif
|