|
@@ -1,263 +1,253 @@
|
|
-/* RT-Thread config file */
|
|
|
|
-#ifndef __RTTHREAD_CFG_H__
|
|
|
|
-#define __RTTHREAD_CFG_H__
|
|
|
|
|
|
+#ifndef RT_CONFIG_H__
|
|
|
|
+#define RT_CONFIG_H__
|
|
|
|
|
|
-/* RT_NAME_MAX*/
|
|
|
|
-#define RT_NAME_MAX 32
|
|
|
|
|
|
+/* Automatically generated file; DO NOT EDIT. */
|
|
|
|
+/* RT-Thread Configuration */
|
|
|
|
|
|
-/* 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 SCHEDULER_DEBUG
|
|
|
|
-/* #define RT_THREAD_DEBUG */
|
|
|
|
|
|
+/* RT-Thread Kernel */
|
|
|
|
|
|
|
|
+#define RT_NAME_MAX 32
|
|
|
|
+#define RT_ALIGN_SIZE 4
|
|
|
|
+/* RT_THREAD_PRIORITY_8 is not set */
|
|
|
|
+#define RT_THREAD_PRIORITY_32
|
|
|
|
+/* RT_THREAD_PRIORITY_256 is not set */
|
|
|
|
+#define RT_THREAD_PRIORITY_MAX 32
|
|
|
|
+#define RT_TICK_PER_SECOND 100
|
|
#define RT_USING_OVERFLOW_CHECK
|
|
#define RT_USING_OVERFLOW_CHECK
|
|
-
|
|
|
|
-/* Using Hook */
|
|
|
|
#define RT_USING_HOOK
|
|
#define RT_USING_HOOK
|
|
-
|
|
|
|
-/* Using Software Timer */
|
|
|
|
|
|
+#define RT_IDEL_HOOK_LIST_SIZE 4
|
|
|
|
+#define IDLE_THREAD_STACK_SIZE 1024
|
|
#define RT_USING_TIMER_SOFT
|
|
#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
|
|
|
|
-
|
|
|
|
-#define IDLE_THREAD_STACK_SIZE 1024
|
|
|
|
-
|
|
|
|
|
|
+#define RT_TIMER_THREAD_PRIO 8
|
|
|
|
+#define RT_TIMER_THREAD_STACK_SIZE 512
|
|
|
|
+#define RT_DEBUG
|
|
|
|
+/* RT_DEBUG_INIT_CONFIG is not set */
|
|
|
|
+/* RT_DEBUG_THREAD_CONFIG is not set */
|
|
|
|
+/* RT_DEBUG_SCHEDULER_CONFIG is not set */
|
|
|
|
+/* RT_DEBUG_IPC_CONFIG is not set */
|
|
|
|
+/* RT_DEBUG_TIMER_CONFIG is not set */
|
|
|
|
+/* RT_DEBUG_IRQ_CONFIG is not set */
|
|
|
|
+/* RT_DEBUG_MEM_CONFIG is not set */
|
|
|
|
+/* RT_DEBUG_SLAB_CONFIG is not set */
|
|
|
|
+/* RT_DEBUG_MEMHEAP_CONFIG is not set */
|
|
|
|
+/* RT_DEBUG_MODULE_CONFIG is not set */
|
|
|
|
+
|
|
|
|
+/* Inter-Thread communication */
|
|
|
|
|
|
-/* SECTION: IPC */
|
|
|
|
-/* Using Semaphore */
|
|
|
|
#define RT_USING_SEMAPHORE
|
|
#define RT_USING_SEMAPHORE
|
|
-
|
|
|
|
-/* Using Mutex */
|
|
|
|
#define RT_USING_MUTEX
|
|
#define RT_USING_MUTEX
|
|
-
|
|
|
|
-/* Using Event */
|
|
|
|
#define RT_USING_EVENT
|
|
#define RT_USING_EVENT
|
|
-
|
|
|
|
-/* Using MailBox */
|
|
|
|
#define RT_USING_MAILBOX
|
|
#define RT_USING_MAILBOX
|
|
-
|
|
|
|
-/* Using Message Queue */
|
|
|
|
#define RT_USING_MESSAGEQUEUE
|
|
#define RT_USING_MESSAGEQUEUE
|
|
|
|
+/* RT_USING_SIGNALS is not set */
|
|
|
|
|
|
-/* SECTION: Memory Management */
|
|
|
|
-/* Using Memory Pool Management*/
|
|
|
|
-#define RT_USING_MEMPOOL
|
|
|
|
|
|
+/* Memory Management */
|
|
|
|
|
|
-/* Using Dynamic Heap Management */
|
|
|
|
|
|
+#define RT_USING_MEMPOOL
|
|
|
|
+/* RT_USING_MEMHEAP is not set */
|
|
|
|
+/* RT_USING_NOHEAP is not set */
|
|
|
|
+/* RT_USING_SMALL_MEM is not set */
|
|
|
|
+#define RT_USING_SLAB
|
|
#define RT_USING_HEAP
|
|
#define RT_USING_HEAP
|
|
|
|
|
|
-/* Using Small MM */
|
|
|
|
-/* #define RT_USING_SMALL_MEM */
|
|
|
|
-
|
|
|
|
-/* Using SLAB Allocator */
|
|
|
|
-#define RT_USING_SLAB
|
|
|
|
|
|
+/* Kernel Device Object */
|
|
|
|
|
|
-/* SECTION: Device System */
|
|
|
|
-/* Using Device System */
|
|
|
|
#define RT_USING_DEVICE
|
|
#define RT_USING_DEVICE
|
|
-#define RT_USING_DEVICE_IPC
|
|
|
|
-
|
|
|
|
-/* Using Module System */
|
|
|
|
-#define RT_USING_MODULE
|
|
|
|
-
|
|
|
|
-/* Interrupt debug */
|
|
|
|
|
|
+/* RT_USING_DEVICE_OPS is not set */
|
|
#define RT_USING_INTERRUPT_INFO
|
|
#define RT_USING_INTERRUPT_INFO
|
|
-
|
|
|
|
-#define RT_USING_SERIAL
|
|
|
|
-/* SECTION: Console options */
|
|
|
|
#define RT_USING_CONSOLE
|
|
#define RT_USING_CONSOLE
|
|
-/* the buffer size of console */
|
|
|
|
-#define RT_CONSOLEBUF_SIZE 1024
|
|
|
|
|
|
+#define RT_CONSOLEBUF_SIZE 1024
|
|
#define RT_CONSOLE_DEVICE_NAME "uart0"
|
|
#define RT_CONSOLE_DEVICE_NAME "uart0"
|
|
|
|
|
|
-/* SECTION: finsh, a C-Express shell */
|
|
|
|
-/* Using FinSH as Shell*/
|
|
|
|
|
|
+/* 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 */
|
|
|
|
+
|
|
|
|
+/* RT_USING_CPLUSPLUS is not set */
|
|
|
|
+
|
|
|
|
+/* Command shell */
|
|
|
|
+
|
|
#define RT_USING_FINSH
|
|
#define RT_USING_FINSH
|
|
-/* Using symbol table */
|
|
|
|
|
|
+#define FINSH_THREAD_NAME "tshell"
|
|
|
|
+#define FINSH_USING_HISTORY
|
|
|
|
+#define FINSH_HISTORY_LINES 5
|
|
#define FINSH_USING_SYMTAB
|
|
#define FINSH_USING_SYMTAB
|
|
#define FINSH_USING_DESCRIPTION
|
|
#define FINSH_USING_DESCRIPTION
|
|
|
|
+/* FINSH_ECHO_DISABLE_DEFAULT is not set */
|
|
|
|
+#define FINSH_THREAD_PRIORITY 20
|
|
#define FINSH_THREAD_STACK_SIZE 4096
|
|
#define FINSH_THREAD_STACK_SIZE 4096
|
|
-#define FINSH_USING_HISTORY 1
|
|
|
|
|
|
+#define FINSH_CMD_SIZE 80
|
|
|
|
+/* FINSH_USING_AUTH is not set */
|
|
#define FINSH_USING_MSH
|
|
#define FINSH_USING_MSH
|
|
|
|
+#define FINSH_USING_MSH_DEFAULT
|
|
|
|
+/* FINSH_USING_MSH_ONLY is not set */
|
|
|
|
+#define FINSH_ARG_MAX 10
|
|
|
|
|
|
-/* SECTION: the runtime libc library */
|
|
|
|
-/* the runtime libc library */
|
|
|
|
-#define RT_USING_LIBC
|
|
|
|
-#define RT_USING_PTHREADS
|
|
|
|
|
|
+/* Device virtual file system */
|
|
|
|
|
|
-/* SECTION: C++ support */
|
|
|
|
-/* Using C++ support */
|
|
|
|
-/* #define RT_USING_CPLUSPLUS */
|
|
|
|
-
|
|
|
|
-/* SECTION: Device filesystem support */
|
|
|
|
-/* using DFS support */
|
|
|
|
#define RT_USING_DFS
|
|
#define RT_USING_DFS
|
|
|
|
+#define DFS_USING_WORKDIR
|
|
|
|
+#define DFS_FILESYSTEMS_MAX 4
|
|
|
|
+#define DFS_FILESYSTEM_TYPES_MAX 4
|
|
|
|
+#define DFS_FD_MAX 16
|
|
|
|
+/* RT_USING_DFS_MNTTABLE is not set */
|
|
#define RT_USING_DFS_ELMFAT
|
|
#define RT_USING_DFS_ELMFAT
|
|
-/* use long file name feature */
|
|
|
|
-#define RT_DFS_ELM_USE_LFN 2
|
|
|
|
|
|
+
|
|
|
|
+/* elm-chan's FatFs, Generic FAT Filesystem Module */
|
|
|
|
+
|
|
|
|
+#define RT_DFS_ELM_CODE_PAGE 936
|
|
|
|
+#define RT_DFS_ELM_WORD_ACCESS
|
|
|
|
+/* RT_DFS_ELM_USE_LFN_0 is not set */
|
|
|
|
+/* RT_DFS_ELM_USE_LFN_1 is not set */
|
|
|
|
+/* RT_DFS_ELM_USE_LFN_2 is not set */
|
|
|
|
+#define RT_DFS_ELM_USE_LFN_3
|
|
|
|
+#define RT_DFS_ELM_USE_LFN 3
|
|
|
|
+#define RT_DFS_ELM_MAX_LFN 128
|
|
|
|
+#define RT_DFS_ELM_DRIVES 2
|
|
|
|
+#define RT_DFS_ELM_MAX_SECTOR_SIZE 512
|
|
|
|
+/* RT_DFS_ELM_USE_ERASE is not set */
|
|
#define RT_DFS_ELM_REENTRANT
|
|
#define RT_DFS_ELM_REENTRANT
|
|
-/* define OEM code page */
|
|
|
|
-#define RT_DFS_ELM_CODE_PAGE 936
|
|
|
|
-/* Using OEM code page file */
|
|
|
|
-// #define RT_DFS_ELM_CODE_PAGE_FILE
|
|
|
|
-/* the max number of file length */
|
|
|
|
-#define RT_DFS_ELM_MAX_LFN 128
|
|
|
|
-/* #define RT_USING_DFS_YAFFS2 */
|
|
|
|
#define RT_USING_DFS_DEVFS
|
|
#define RT_USING_DFS_DEVFS
|
|
-
|
|
|
|
|
|
+/* RT_USING_DFS_ROMFS is not set */
|
|
|
|
+/* RT_USING_DFS_RAMFS is not set */
|
|
|
|
+/* RT_USING_DFS_UFFS is not set */
|
|
|
|
+/* RT_USING_DFS_JFFS2 is not set */
|
|
#define RT_USING_DFS_NFS
|
|
#define RT_USING_DFS_NFS
|
|
-#define RT_NFS_HOST_EXPORT "192.168.1.5:/"
|
|
|
|
-
|
|
|
|
-#define DFS_USING_WORKDIR
|
|
|
|
-
|
|
|
|
-/* the max number of mounted filesystem */
|
|
|
|
-#define DFS_FILESYSTEMS_MAX 4
|
|
|
|
-/* the max number of opened files */
|
|
|
|
-#define DFS_FD_MAX 16
|
|
|
|
-/* the max number of cached sector */
|
|
|
|
-#define DFS_CACHE_MAX_NUM 4
|
|
|
|
|
|
+#define RT_NFS_HOST_EXPORT "192.168.1.5:/"
|
|
|
|
|
|
-/* Enable freemodbus protocol stack*/
|
|
|
|
-/* #define RT_USING_MODBUS */
|
|
|
|
-
|
|
|
|
-/* USING CPU FFS */
|
|
|
|
-#define RT_USING_CPU_FFS
|
|
|
|
-
|
|
|
|
-/* MMU pte item size defined */
|
|
|
|
-#define RT_MMU_PTE_SIZE 4096
|
|
|
|
-
|
|
|
|
-#define RT_USING_GPIO
|
|
|
|
|
|
+/* Device Drivers */
|
|
|
|
|
|
|
|
+#define RT_USING_DEVICE_IPC
|
|
|
|
+#define RT_PIPE_BUFSZ 512
|
|
|
|
+#define RT_USING_SERIAL
|
|
|
|
+/* RT_USING_CAN is not set */
|
|
|
|
+/* RT_USING_HWTIMER is not set */
|
|
|
|
+/* RT_USING_CPUTIME is not set */
|
|
#define RT_USING_I2C
|
|
#define RT_USING_I2C
|
|
-
|
|
|
|
|
|
+#define RT_USING_I2C_BITOPS
|
|
|
|
+#define RT_USING_PIN
|
|
|
|
+/* RT_USING_PWM is not set */
|
|
|
|
+/* RT_USING_MTD_NOR is not set */
|
|
|
|
+/* RT_USING_MTD_NAND is not set */
|
|
|
|
+/* RT_USING_RTC is not set */
|
|
|
|
+#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
|
|
#define RT_USING_SPI
|
|
#define RT_USING_SPI
|
|
|
|
+/* RT_USING_SPI_MSD is not set */
|
|
|
|
+/* RT_USING_SFUD is not set */
|
|
|
|
+/* RT_USING_W25QXX is not set */
|
|
|
|
+/* RT_USING_GD is not set */
|
|
|
|
+/* RT_USING_ENC28J60 is not set */
|
|
|
|
+/* RT_USING_SPI_WIFI is not set */
|
|
|
|
+/* RT_USING_WDT is not set */
|
|
|
|
+/* RT_USING_WIFI is not set */
|
|
|
|
+/* RT_USING_AUDIO is not set */
|
|
|
|
|
|
-#define RT_USING_SDIO
|
|
|
|
-#define RT_MMCSD_DBG
|
|
|
|
|
|
+/* Using USB */
|
|
|
|
|
|
-/* SECTION: lwip, a lightweight TCP/IP protocol stack */
|
|
|
|
-/* Using lightweight TCP/IP protocol stack */
|
|
|
|
-#define RT_USING_LWIP
|
|
|
|
|
|
+/* RT_USING_USB_HOST is not set */
|
|
|
|
+/* RT_USING_USB_DEVICE is not set */
|
|
|
|
|
|
-/* Trace LwIP protocol */
|
|
|
|
-/* #define RT_LWIP_DEBUG */
|
|
|
|
|
|
+/* POSIX layer and C standard library */
|
|
|
|
|
|
-//#define RT_LWIP_REASSEMBLY_FRAG
|
|
|
|
|
|
+#define RT_USING_LIBC
|
|
|
|
+#define RT_USING_PTHREADS
|
|
|
|
+#define RT_USING_POSIX
|
|
|
|
+/* RT_USING_POSIX_MMAP is not set */
|
|
|
|
+/* RT_USING_POSIX_TERMIOS is not set */
|
|
|
|
+/* RT_USING_POSIX_AIO is not set */
|
|
|
|
+#define RT_USING_MODULE
|
|
|
|
|
|
-#define SO_REUSE 1
|
|
|
|
|
|
+/* Network */
|
|
|
|
|
|
-#define RT_LWIP_DNS
|
|
|
|
|
|
+/* Socket abstraction layer */
|
|
|
|
|
|
-/* Enable ICMP protocol */
|
|
|
|
-#define RT_LWIP_ICMP
|
|
|
|
|
|
+/* RT_USING_SAL is not set */
|
|
|
|
+
|
|
|
|
+/* light weight TCP/IP stack */
|
|
|
|
|
|
-/* Enable IGMP protocol */
|
|
|
|
|
|
+#define RT_USING_LWIP
|
|
|
|
+/* RT_USING_LWIP141 is not set */
|
|
|
|
+#define RT_USING_LWIP202
|
|
|
|
+/* RT_USING_LWIP_IPV6 is not set */
|
|
#define RT_LWIP_IGMP
|
|
#define RT_LWIP_IGMP
|
|
|
|
+#define RT_LWIP_ICMP
|
|
|
|
+/* RT_LWIP_SNMP is not set */
|
|
|
|
+#define RT_LWIP_DNS
|
|
|
|
+#define RT_LWIP_DHCP
|
|
|
|
+#define IP_SOF_BROADCAST 1
|
|
|
|
+#define IP_SOF_BROADCAST_RECV 1
|
|
|
|
|
|
-/* Enable UDP protocol */
|
|
|
|
-#define RT_LWIP_UDP
|
|
|
|
|
|
+/* Static IPv4 Address */
|
|
|
|
|
|
-/* Enable TCP protocol */
|
|
|
|
|
|
+#define RT_LWIP_IPADDR "192.168.1.30"
|
|
|
|
+#define RT_LWIP_GWADDR "192.168.1.1"
|
|
|
|
+#define RT_LWIP_MSKADDR "255.255.255.0"
|
|
|
|
+#define RT_LWIP_UDP
|
|
#define RT_LWIP_TCP
|
|
#define RT_LWIP_TCP
|
|
|
|
+/* RT_LWIP_RAW is not set */
|
|
|
|
+/* RT_LWIP_PPP is not set */
|
|
|
|
+#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 8
|
|
|
|
+#define RT_LWIP_TCP_PCB_NUM 32
|
|
|
|
+#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 128
|
|
|
|
+#define RT_LWIP_TCPTHREAD_MBOX_SIZE 32
|
|
|
|
+#define RT_LWIP_TCPTHREAD_STACKSIZE 4096
|
|
|
|
+/* LWIP_NO_RX_THREAD is not set */
|
|
|
|
+/* LWIP_NO_TX_THREAD is not set */
|
|
|
|
+#define RT_LWIP_ETHTHREAD_PRIORITY 144
|
|
|
|
+#define RT_LWIP_ETHTHREAD_STACKSIZE 1024
|
|
|
|
+#define RT_LWIP_ETHTHREAD_MBOX_SIZE 32
|
|
|
|
+/* RT_LWIP_REASSEMBLY_FRAG is not set */
|
|
|
|
+#define LWIP_NETIF_STATUS_CALLBACK 1
|
|
|
|
+#define SO_REUSE 1
|
|
|
|
+#define LWIP_SO_RCVTIMEO 1
|
|
|
|
+#define LWIP_SO_SNDTIMEO 1
|
|
|
|
+#define LWIP_SO_RCVBUF 1
|
|
|
|
+/* RT_LWIP_NETIF_LOOPBACK is not set */
|
|
|
|
+#define LWIP_NETIF_LOOPBACK 0
|
|
|
|
+/* RT_LWIP_STATS is not set */
|
|
|
|
+/* RT_LWIP_DEBUG is not set */
|
|
|
|
|
|
-/* the number of simulatenously active TCP connections*/
|
|
|
|
-#define RT_LWIP_TCP_PCB_NUM 32
|
|
|
|
|
|
+/* Modbus master and slave stack */
|
|
|
|
|
|
-/* TCP sender buffer space */
|
|
|
|
-#define RT_LWIP_TCP_SND_BUF 1460*10
|
|
|
|
|
|
+/* RT_USING_MODBUS is not set */
|
|
|
|
|
|
-/* TCP receive window. */
|
|
|
|
-#define RT_LWIP_TCP_WND 1460*8
|
|
|
|
|
|
+/* AT commands */
|
|
|
|
|
|
-/* Enable SNMP protocol */
|
|
|
|
-/* #define RT_LWIP_SNMP */
|
|
|
|
|
|
+/* RT_USING_AT is not set */
|
|
|
|
+/* LWIP_USING_DHCPD is not set */
|
|
|
|
|
|
-/* Using DHCP */
|
|
|
|
-/* #define RT_LWIP_DHCP */
|
|
|
|
|
|
+/* VBUS(Virtual Software BUS) */
|
|
|
|
|
|
-/* ip address of target */
|
|
|
|
-#define RT_LWIP_IPADDR "192.168.1.30"
|
|
|
|
|
|
+/* RT_USING_VBUS is not set */
|
|
|
|
|
|
-/* gateway address of target */
|
|
|
|
-#define RT_LWIP_GWADDR "192.168.1.1"
|
|
|
|
|
|
+/* Utilities */
|
|
|
|
|
|
-/* mask address of target */
|
|
|
|
-#define RT_LWIP_MSKADDR "255.255.255.0"
|
|
|
|
|
|
+/* RT_USING_LOGTRACE is not set */
|
|
|
|
+/* RT_USING_RYM is not set */
|
|
|
|
|
|
-/* the number of blocks for pbuf */
|
|
|
|
-#define RT_LWIP_PBUF_NUM 16
|
|
|
|
-
|
|
|
|
-/* the number of simultaneously queued TCP */
|
|
|
|
-#define RT_LWIP_TCP_SEG_NUM 40
|
|
|
|
-
|
|
|
|
-/* thread priority of tcpip thread */
|
|
|
|
-#define RT_LWIP_TCPTHREAD_PRIORITY 128
|
|
|
|
-
|
|
|
|
-/* mail box size of tcpip thread to wait for */
|
|
|
|
-#define RT_LWIP_TCPTHREAD_MBOX_SIZE 32
|
|
|
|
-
|
|
|
|
-/* thread stack size of tcpip thread */
|
|
|
|
-#define RT_LWIP_TCPTHREAD_STACKSIZE 4096
|
|
|
|
-
|
|
|
|
-/* thread priority of ethnetif thread */
|
|
|
|
-#define RT_LWIP_ETHTHREAD_PRIORITY 144
|
|
|
|
-
|
|
|
|
-/* mail box size of ethnetif thread to wait for */
|
|
|
|
-#define RT_LWIP_ETHTHREAD_MBOX_SIZE 32
|
|
|
|
-
|
|
|
|
-/* thread stack size of ethnetif thread */
|
|
|
|
-#define RT_LWIP_ETHTHREAD_STACKSIZE 1024
|
|
|
|
-
|
|
|
|
-/* 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 */
|
|
|
|
-
|
|
|
|
-/* SECTION: FTK support */
|
|
|
|
-/* using FTK support */
|
|
|
|
-/* #define RT_USING_FTK */
|
|
|
|
-
|
|
|
|
-/*
|
|
|
|
- * Note on FTK:
|
|
|
|
- *
|
|
|
|
- * FTK depends :
|
|
|
|
- * #define RT_USING_NEWLIB
|
|
|
|
- * #define DFS_USING_WORKDIR
|
|
|
|
- *
|
|
|
|
- * And the maximal length must great than 64
|
|
|
|
- * #define RT_DFS_ELM_MAX_LFN 128
|
|
|
|
- */
|
|
|
|
|
|
+/* BSP configure */
|
|
|
|
|
|
-#define RT_USING_COMPONENTS_INIT
|
|
|
|
-#define RT_USING_USER_MAIN
|
|
|
|
|
|
+#define RT_USING_GPIO_DEVICE
|
|
|
|
+#define RT_USING_I2C_CONTROL
|
|
|
|
+#define RT_USING_SDIO_CONTROL
|
|
|
|
+#define RT_USING_SPI_CONTROL
|
|
|
|
+#define RT_USING_EMAC
|
|
|
|
+#define RT_MMU_PTE_SIZE 4096
|
|
|
|
|
|
#endif
|
|
#endif
|