2017-11-01 11:09:30 +08:00
|
|
|
#ifndef RT_CONFIG_H__
|
|
|
|
#define RT_CONFIG_H__
|
2016-08-19 00:35:30 +08:00
|
|
|
|
2017-11-01 11:09:30 +08:00
|
|
|
/* Automatically generated file; DO NOT EDIT. */
|
|
|
|
/* RT-Thread Configuration */
|
2016-08-19 00:35:30 +08:00
|
|
|
|
2017-11-01 11:09:30 +08:00
|
|
|
/* RT-Thread Kernel */
|
2016-08-19 00:35:30 +08:00
|
|
|
|
2017-11-01 11:09:30 +08:00
|
|
|
#define RT_NAME_MAX 8
|
|
|
|
#define RT_ALIGN_SIZE 4
|
2018-03-04 22:35:07 +08:00
|
|
|
/* RT_THREAD_PRIORITY_8 is not set */
|
|
|
|
#define RT_THREAD_PRIORITY_32
|
|
|
|
/* RT_THREAD_PRIORITY_256 is not set */
|
2017-11-01 11:09:30 +08:00
|
|
|
#define RT_THREAD_PRIORITY_MAX 32
|
|
|
|
#define RT_TICK_PER_SECOND 100
|
2016-08-19 00:35:30 +08:00
|
|
|
#define RT_DEBUG
|
|
|
|
#define RT_USING_OVERFLOW_CHECK
|
2017-11-01 11:09:30 +08:00
|
|
|
#define RT_DEBUG_INIT 1
|
2018-03-04 22:35:07 +08:00
|
|
|
#define RT_DEBUG_THREAD 0
|
2016-08-19 00:35:30 +08:00
|
|
|
#define RT_USING_HOOK
|
2017-11-01 11:09:30 +08:00
|
|
|
#define IDLE_THREAD_STACK_SIZE 1024
|
|
|
|
/* RT_USING_TIMER_SOFT is not set */
|
2016-08-19 00:35:30 +08:00
|
|
|
|
2017-11-01 11:09:30 +08:00
|
|
|
/* Inter-Thread communication */
|
2016-08-19 00:35:30 +08:00
|
|
|
|
|
|
|
#define RT_USING_SEMAPHORE
|
|
|
|
#define RT_USING_MUTEX
|
|
|
|
#define RT_USING_EVENT
|
|
|
|
#define RT_USING_MAILBOX
|
|
|
|
#define RT_USING_MESSAGEQUEUE
|
2017-11-01 11:09:30 +08:00
|
|
|
/* RT_USING_SIGNALS is not set */
|
2016-08-19 00:35:30 +08:00
|
|
|
|
2017-11-01 11:09:30 +08:00
|
|
|
/* Memory Management */
|
2016-08-19 00:35:30 +08:00
|
|
|
|
2017-11-01 11:09:30 +08:00
|
|
|
#define RT_USING_MEMPOOL
|
2016-08-20 23:04:01 +08:00
|
|
|
#define RT_USING_MEMHEAP
|
2018-03-04 22:35:07 +08:00
|
|
|
/* RT_USING_NOHEAP is not set */
|
2016-08-19 00:35:30 +08:00
|
|
|
#define RT_USING_SMALL_MEM
|
2017-11-01 11:09:30 +08:00
|
|
|
/* RT_USING_SLAB is not set */
|
2018-03-04 22:35:07 +08:00
|
|
|
/* RT_USING_MEMHEAP_AS_HEAP is not set */
|
|
|
|
/* RT_USING_MEMTRACE is not set */
|
|
|
|
#define RT_USING_HEAP
|
2016-08-19 00:35:30 +08:00
|
|
|
|
2017-11-01 11:09:30 +08:00
|
|
|
/* Kernel Device Object */
|
2016-08-20 23:04:01 +08:00
|
|
|
|
2016-08-19 00:35:30 +08:00
|
|
|
#define RT_USING_DEVICE
|
2018-03-04 22:35:07 +08:00
|
|
|
/* RT_USING_INTERRUPT_INFO is not set */
|
2017-11-01 11:09:30 +08:00
|
|
|
#define RT_USING_CONSOLE
|
|
|
|
#define RT_CONSOLEBUF_SIZE 128
|
|
|
|
#define RT_CONSOLE_DEVICE_NAME "uart1"
|
|
|
|
/* RT_USING_MODULE is not set */
|
2016-08-19 00:35:30 +08:00
|
|
|
|
2017-11-01 11:09:30 +08:00
|
|
|
/* RT-Thread Components */
|
2016-08-19 00:35:30 +08:00
|
|
|
|
2017-11-01 11:09:30 +08:00
|
|
|
#define RT_USING_COMPONENTS_INIT
|
|
|
|
/* RT_USING_USER_MAIN is not set */
|
2016-08-19 00:35:30 +08:00
|
|
|
|
2017-11-01 11:09:30 +08:00
|
|
|
/* C++ features */
|
2016-08-19 00:35:30 +08:00
|
|
|
|
2017-11-01 11:09:30 +08:00
|
|
|
/* RT_USING_CPLUSPLUS is not set */
|
|
|
|
|
|
|
|
/* Command shell */
|
2016-08-19 00:35:30 +08:00
|
|
|
|
|
|
|
#define RT_USING_FINSH
|
2018-03-04 22:35:07 +08:00
|
|
|
#define FINSH_THREAD_NAME "tshell"
|
2017-11-01 11:09:30 +08:00
|
|
|
#define FINSH_USING_HISTORY
|
2018-03-04 22:35:07 +08:00
|
|
|
#define FINSH_HISTORY_LINES 5
|
2016-08-19 00:35:30 +08:00
|
|
|
#define FINSH_USING_SYMTAB
|
|
|
|
#define FINSH_USING_DESCRIPTION
|
2017-11-01 11:09:30 +08:00
|
|
|
#define FINSH_THREAD_PRIORITY 20
|
|
|
|
#define FINSH_THREAD_STACK_SIZE 4096
|
|
|
|
#define FINSH_CMD_SIZE 80
|
|
|
|
/* FINSH_USING_AUTH is not set */
|
|
|
|
#define FINSH_USING_MSH
|
|
|
|
#define FINSH_USING_MSH_DEFAULT
|
|
|
|
/* FINSH_USING_MSH_ONLY is not set */
|
|
|
|
|
|
|
|
/* Device virtual file system */
|
|
|
|
|
|
|
|
/* RT_USING_DFS is not set */
|
2018-03-04 22:35:07 +08:00
|
|
|
/* 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 */
|
|
|
|
/* RT_DFS_ELM_USE_LFN_3 is not set */
|
2017-11-01 11:09:30 +08:00
|
|
|
|
|
|
|
/* Device Drivers */
|
|
|
|
|
|
|
|
#define RT_USING_DEVICE_IPC
|
|
|
|
#define RT_USING_SERIAL
|
|
|
|
/* RT_USING_CAN is not set */
|
|
|
|
/* RT_USING_HWTIMER is not set */
|
2018-03-04 22:35:07 +08:00
|
|
|
/* RT_USING_CPUTIME is not set */
|
2017-11-01 11:09:30 +08:00
|
|
|
/* RT_USING_I2C is not set */
|
2018-03-04 22:35:07 +08:00
|
|
|
#define RT_USING_PIN
|
2017-11-01 11:09:30 +08:00
|
|
|
/* RT_USING_MTD_NOR is not set */
|
|
|
|
/* RT_USING_MTD_NAND is not set */
|
|
|
|
/* RT_USING_RTC is not set */
|
|
|
|
/* RT_USING_SDIO is not set */
|
|
|
|
/* RT_USING_SPI is not set */
|
|
|
|
/* RT_USING_WDT is not set */
|
2018-03-04 22:35:07 +08:00
|
|
|
/* RT_USING_WIFI is not set */
|
|
|
|
|
|
|
|
/* Using USB */
|
|
|
|
|
2017-11-01 11:09:30 +08:00
|
|
|
/* RT_USING_USB_HOST is not set */
|
|
|
|
/* RT_USING_USB_DEVICE is not set */
|
|
|
|
|
|
|
|
/* POSIX layer and C standard library */
|
|
|
|
|
2018-03-04 22:35:07 +08:00
|
|
|
#define RT_USING_LIBC
|
|
|
|
#define RT_USING_PTHREADS
|
|
|
|
/* HAVE_SYS_SIGNALS is not set */
|
2017-11-01 11:09:30 +08:00
|
|
|
|
|
|
|
/* Network stack */
|
|
|
|
|
|
|
|
/* light weight TCP/IP stack */
|
|
|
|
|
|
|
|
/* RT_USING_LWIP is not set */
|
|
|
|
|
|
|
|
/* Modbus master and slave stack */
|
|
|
|
|
|
|
|
/* RT_USING_MODBUS is not set */
|
|
|
|
|
2018-03-04 22:35:07 +08:00
|
|
|
/* VBUS(Virtual Software BUS) */
|
2017-11-01 11:09:30 +08:00
|
|
|
|
2018-03-04 22:35:07 +08:00
|
|
|
/* RT_USING_VBUS is not set */
|
|
|
|
|
|
|
|
/* Utilities */
|
|
|
|
|
|
|
|
/* RT_USING_LOGTRACE is not set */
|
|
|
|
/* RT_USING_RYM is not set */
|
2017-11-01 11:09:30 +08:00
|
|
|
|
|
|
|
/* RT-Thread online packages */
|
|
|
|
|
|
|
|
/* system packages */
|
|
|
|
|
2018-03-04 22:35:07 +08:00
|
|
|
/* RT-Thread GUI Engine */
|
|
|
|
|
|
|
|
/* PKG_USING_GUIENGINE is not set */
|
|
|
|
/* PKG_USING_LWEXT4 is not set */
|
2017-11-01 11:09:30 +08:00
|
|
|
/* PKG_USING_PARTITION is not set */
|
|
|
|
/* PKG_USING_SQLITE is not set */
|
2018-03-04 22:35:07 +08:00
|
|
|
/* PKG_USING_RTI is not set */
|
2017-11-01 11:09:30 +08:00
|
|
|
|
|
|
|
/* IoT - internet of things */
|
2016-08-19 00:35:30 +08:00
|
|
|
|
2017-11-01 11:09:30 +08:00
|
|
|
/* PKG_USING_PAHOMQTT is not set */
|
|
|
|
/* PKG_USING_WEBCLIENT is not set */
|
|
|
|
/* PKG_USING_MONGOOSE is not set */
|
|
|
|
/* PKG_USING_WEBTERMINAL is not set */
|
|
|
|
/* PKG_USING_CJSON is not set */
|
2018-03-04 22:35:07 +08:00
|
|
|
/* PKG_USING_LJSON is not set */
|
2017-11-01 11:09:30 +08:00
|
|
|
/* PKG_USING_EZXML is not set */
|
2018-03-04 22:35:07 +08:00
|
|
|
/* PKG_USING_NANOPB is not set */
|
|
|
|
/* PKG_USING_GAGENT_CLOUD is not set */
|
|
|
|
|
|
|
|
/* Wi-Fi */
|
2017-11-01 11:09:30 +08:00
|
|
|
|
|
|
|
/* Marvell WiFi */
|
|
|
|
|
2018-03-04 22:35:07 +08:00
|
|
|
/* PKG_USING_WLANMARVELL is not set */
|
|
|
|
|
|
|
|
/* Wiced WiFi */
|
|
|
|
|
|
|
|
/* PKG_USING_WLAN_WICED is not set */
|
|
|
|
/* PKG_USING_COAP is not set */
|
|
|
|
/* PKG_USING_NOPOLL is not set */
|
|
|
|
/* PKG_USING_NETUTILS is not set */
|
2017-11-01 11:09:30 +08:00
|
|
|
|
|
|
|
/* security packages */
|
|
|
|
|
|
|
|
/* PKG_USING_MBEDTLS is not set */
|
2018-03-04 22:35:07 +08:00
|
|
|
/* PKG_USING_libsodium is not set */
|
|
|
|
/* PKG_USING_TINYCRYPT is not set */
|
2017-11-01 11:09:30 +08:00
|
|
|
|
|
|
|
/* language packages */
|
|
|
|
|
|
|
|
/* PKG_USING_JERRYSCRIPT is not set */
|
2018-03-04 22:35:07 +08:00
|
|
|
/* PKG_USING_MICROPYTHON is not set */
|
2017-11-01 11:09:30 +08:00
|
|
|
|
|
|
|
/* multimedia packages */
|
|
|
|
|
2018-03-04 22:35:07 +08:00
|
|
|
/* PKG_USING_OPENMV is not set */
|
|
|
|
|
2017-11-01 11:09:30 +08:00
|
|
|
/* tools packages */
|
|
|
|
|
|
|
|
/* PKG_USING_CMBACKTRACE is not set */
|
|
|
|
/* PKG_USING_EASYLOGGER is not set */
|
2018-03-04 22:35:07 +08:00
|
|
|
/* PKG_USING_SYSTEMVIEW is not set */
|
|
|
|
/* PKG_USING_IPERF is not set */
|
2017-11-01 11:09:30 +08:00
|
|
|
|
|
|
|
/* miscellaneous packages */
|
|
|
|
|
2018-03-04 22:35:07 +08:00
|
|
|
/* PKG_USING_FASTLZ is not set */
|
|
|
|
/* PKG_USING_MINILZO is not set */
|
|
|
|
/* PKG_USING_QUICKLZ is not set */
|
|
|
|
|
|
|
|
/* example package: hello */
|
|
|
|
|
2017-11-01 11:09:30 +08:00
|
|
|
/* PKG_USING_HELLO is not set */
|
2018-03-04 22:35:07 +08:00
|
|
|
/* PKG_USING_MULTIBUTTON is not set */
|
2017-11-01 11:09:30 +08:00
|
|
|
#define RT_USING_EXT_SDRAM
|
|
|
|
#define RT_USING_UART1
|
|
|
|
/* RT_USING_UART2 is not set */
|
|
|
|
/* RT_USING_UART3 is not set */
|
|
|
|
/* RT_USING_SPI5 is not set */
|
2016-08-19 00:35:30 +08:00
|
|
|
|
|
|
|
#endif
|