2017-12-13 20:38:56 +08:00
|
|
|
#ifndef RT_CONFIG_H__
|
|
|
|
#define RT_CONFIG_H__
|
|
|
|
|
2021-12-02 11:02:36 +08:00
|
|
|
/* Generated by Kconfiglib (https://github.com/ulfalizer/Kconfiglib) */
|
2017-12-13 20:38:56 +08:00
|
|
|
|
|
|
|
/* RT-Thread Kernel */
|
|
|
|
|
|
|
|
#define RT_NAME_MAX 8
|
|
|
|
#define RT_ALIGN_SIZE 4
|
|
|
|
#define RT_THREAD_PRIORITY_32
|
|
|
|
#define RT_THREAD_PRIORITY_MAX 32
|
|
|
|
#define RT_TICK_PER_SECOND 100
|
2013-01-08 22:40:58 +08:00
|
|
|
#define RT_USING_OVERFLOW_CHECK
|
|
|
|
#define RT_USING_HOOK
|
2019-07-19 16:14:02 +08:00
|
|
|
#define RT_USING_IDLE_HOOK
|
2019-09-05 08:33:06 +08:00
|
|
|
#define RT_IDLE_HOOK_LIST_SIZE 4
|
2017-12-13 20:38:56 +08:00
|
|
|
#define IDLE_THREAD_STACK_SIZE 256
|
2021-09-25 11:37:26 +08:00
|
|
|
|
|
|
|
/* kservice optimization */
|
|
|
|
|
2021-12-02 11:02:36 +08:00
|
|
|
/* end of kservice optimization */
|
2019-07-19 16:14:02 +08:00
|
|
|
#define RT_DEBUG
|
|
|
|
#define RT_DEBUG_COLOR
|
2017-12-13 20:38:56 +08:00
|
|
|
|
|
|
|
/* Inter-Thread communication */
|
|
|
|
|
2013-01-08 22:40:58 +08:00
|
|
|
#define RT_USING_SEMAPHORE
|
|
|
|
#define RT_USING_MUTEX
|
|
|
|
#define RT_USING_EVENT
|
|
|
|
#define RT_USING_MAILBOX
|
|
|
|
#define RT_USING_MESSAGEQUEUE
|
2021-12-02 11:02:36 +08:00
|
|
|
/* end of Inter-Thread communication */
|
2017-12-13 20:38:56 +08:00
|
|
|
|
|
|
|
/* Memory Management */
|
2015-09-30 16:26:40 +08:00
|
|
|
|
|
|
|
#define RT_USING_MEMPOOL
|
2013-01-08 22:40:58 +08:00
|
|
|
#define RT_USING_SMALL_MEM
|
2021-12-16 16:23:58 +08:00
|
|
|
#define RT_USING_SMALL_MEM_AS_HEAP
|
2017-12-13 20:38:56 +08:00
|
|
|
#define RT_USING_HEAP
|
2021-12-02 11:02:36 +08:00
|
|
|
/* end of Memory Management */
|
2013-01-08 22:40:58 +08:00
|
|
|
|
2017-12-13 20:38:56 +08:00
|
|
|
/* Kernel Device Object */
|
2013-01-08 22:40:58 +08:00
|
|
|
|
2017-12-13 20:38:56 +08:00
|
|
|
#define RT_USING_DEVICE
|
2013-01-08 22:40:58 +08:00
|
|
|
#define RT_USING_CONSOLE
|
2017-12-13 20:38:56 +08:00
|
|
|
#define RT_CONSOLEBUF_SIZE 128
|
|
|
|
#define RT_CONSOLE_DEVICE_NAME "console"
|
2021-12-02 11:02:36 +08:00
|
|
|
/* end of Kernel Device Object */
|
|
|
|
#define RT_VER_NUM 0x40100
|
|
|
|
/* end of RT-Thread Kernel */
|
2017-12-13 20:38:56 +08:00
|
|
|
|
|
|
|
/* RT-Thread Components */
|
|
|
|
|
2021-03-31 21:38:19 +08:00
|
|
|
#define RT_USING_COMPONENTS_INIT
|
|
|
|
#define RT_USING_USER_MAIN
|
|
|
|
#define RT_MAIN_THREAD_STACK_SIZE 2048
|
|
|
|
#define RT_MAIN_THREAD_PRIORITY 10
|
2017-12-13 20:38:56 +08:00
|
|
|
|
|
|
|
/* C++ features */
|
|
|
|
|
2021-12-02 11:02:36 +08:00
|
|
|
/* end of C++ features */
|
2017-12-13 20:38:56 +08:00
|
|
|
|
|
|
|
/* Command shell */
|
2013-02-27 00:37:57 +08:00
|
|
|
|
2013-01-08 22:40:58 +08:00
|
|
|
#define RT_USING_FINSH
|
2021-09-25 11:37:26 +08:00
|
|
|
#define RT_USING_MSH
|
|
|
|
#define FINSH_USING_MSH
|
2018-03-03 16:34:01 +08:00
|
|
|
#define FINSH_THREAD_NAME "tshell"
|
2021-09-25 11:37:26 +08:00
|
|
|
#define FINSH_THREAD_PRIORITY 20
|
|
|
|
#define FINSH_THREAD_STACK_SIZE 4096
|
2017-12-13 20:38:56 +08:00
|
|
|
#define FINSH_USING_HISTORY
|
2018-03-03 16:34:01 +08:00
|
|
|
#define FINSH_HISTORY_LINES 5
|
2013-01-08 22:40:58 +08:00
|
|
|
#define FINSH_USING_SYMTAB
|
2017-12-13 20:38:56 +08:00
|
|
|
#define FINSH_CMD_SIZE 80
|
2021-09-25 11:37:26 +08:00
|
|
|
#define MSH_USING_BUILT_IN_COMMANDS
|
|
|
|
#define FINSH_USING_DESCRIPTION
|
2019-07-19 16:14:02 +08:00
|
|
|
#define FINSH_ARG_MAX 10
|
2021-12-02 11:02:36 +08:00
|
|
|
/* end of Command shell */
|
2017-12-13 20:38:56 +08:00
|
|
|
|
|
|
|
/* Device virtual file system */
|
|
|
|
|
2015-09-30 17:57:58 +08:00
|
|
|
#define RT_USING_DFS
|
2021-12-02 11:02:36 +08:00
|
|
|
#define DFS_USING_POSIX
|
2015-09-30 17:57:58 +08:00
|
|
|
#define DFS_USING_WORKDIR
|
2017-12-13 20:38:56 +08:00
|
|
|
#define DFS_FILESYSTEMS_MAX 2
|
2019-07-19 16:14:02 +08:00
|
|
|
#define DFS_FILESYSTEM_TYPES_MAX 4
|
2017-12-13 20:38:56 +08:00
|
|
|
#define DFS_FD_MAX 4
|
2013-01-08 22:40:58 +08:00
|
|
|
#define RT_USING_DFS_ELMFAT
|
2017-12-13 20:38:56 +08:00
|
|
|
|
|
|
|
/* elm-chan's FatFs, Generic FAT Filesystem Module */
|
|
|
|
|
|
|
|
#define RT_DFS_ELM_CODE_PAGE 437
|
|
|
|
#define RT_DFS_ELM_WORD_ACCESS
|
|
|
|
#define RT_DFS_ELM_USE_LFN_0
|
|
|
|
#define RT_DFS_ELM_USE_LFN 0
|
2021-03-16 15:20:27 +08:00
|
|
|
#define RT_DFS_ELM_LFN_UNICODE_0
|
|
|
|
#define RT_DFS_ELM_LFN_UNICODE 0
|
2017-12-13 20:38:56 +08:00
|
|
|
#define RT_DFS_ELM_MAX_LFN 255
|
|
|
|
#define RT_DFS_ELM_DRIVES 2
|
|
|
|
#define RT_DFS_ELM_MAX_SECTOR_SIZE 512
|
|
|
|
#define RT_DFS_ELM_REENTRANT
|
2021-10-13 01:37:14 +08:00
|
|
|
#define RT_DFS_ELM_MUTEX_TIMEOUT 3000
|
2021-12-02 11:02:36 +08:00
|
|
|
/* end of elm-chan's FatFs, Generic FAT Filesystem Module */
|
2017-12-13 20:38:56 +08:00
|
|
|
#define RT_USING_DFS_DEVFS
|
2021-12-02 11:02:36 +08:00
|
|
|
/* end of Device virtual file system */
|
2017-12-13 20:38:56 +08:00
|
|
|
|
|
|
|
/* Device Drivers */
|
|
|
|
|
|
|
|
#define RT_USING_DEVICE_IPC
|
|
|
|
#define RT_USING_SERIAL
|
2021-09-25 11:37:26 +08:00
|
|
|
#define RT_USING_SERIAL_V1
|
2018-12-17 09:35:24 +08:00
|
|
|
#define RT_SERIAL_USING_DMA
|
2019-07-19 16:14:02 +08:00
|
|
|
#define RT_SERIAL_RB_BUFSZ 64
|
2017-12-13 20:38:56 +08:00
|
|
|
|
|
|
|
/* Using USB */
|
|
|
|
|
2021-12-02 11:02:36 +08:00
|
|
|
/* end of Using USB */
|
|
|
|
/* end of Device Drivers */
|
2017-12-13 20:38:56 +08:00
|
|
|
|
|
|
|
/* POSIX layer and C standard library */
|
|
|
|
|
2021-03-16 15:20:27 +08:00
|
|
|
#define RT_LIBC_USING_TIME
|
2021-09-25 11:37:26 +08:00
|
|
|
#define RT_LIBC_DEFAULT_TIMEZONE 8
|
2021-12-02 11:02:36 +08:00
|
|
|
|
|
|
|
/* POSIX (Portable Operating System Interface) layer */
|
|
|
|
|
2021-12-16 16:23:58 +08:00
|
|
|
|
|
|
|
/* Interprocess Communication (IPC) */
|
|
|
|
|
|
|
|
|
|
|
|
/* Socket is in the 'Network' category */
|
|
|
|
|
|
|
|
/* end of Interprocess Communication (IPC) */
|
2021-12-02 11:02:36 +08:00
|
|
|
/* end of POSIX (Portable Operating System Interface) layer */
|
|
|
|
/* end of POSIX layer and C standard library */
|
2017-12-13 20:38:56 +08:00
|
|
|
|
2019-07-19 16:14:02 +08:00
|
|
|
/* Network */
|
|
|
|
|
|
|
|
/* Socket abstraction layer */
|
|
|
|
|
2021-12-02 11:02:36 +08:00
|
|
|
/* end of Socket abstraction layer */
|
2019-07-19 16:14:02 +08:00
|
|
|
|
|
|
|
/* Network interface device */
|
|
|
|
|
2021-12-02 11:02:36 +08:00
|
|
|
/* end of Network interface device */
|
2017-12-13 20:38:56 +08:00
|
|
|
|
|
|
|
/* light weight TCP/IP stack */
|
|
|
|
|
2021-12-02 11:02:36 +08:00
|
|
|
/* end of light weight TCP/IP stack */
|
2017-12-13 20:38:56 +08:00
|
|
|
|
2019-07-19 16:14:02 +08:00
|
|
|
/* AT commands */
|
2017-12-13 20:38:56 +08:00
|
|
|
|
2021-12-02 11:02:36 +08:00
|
|
|
/* end of AT commands */
|
|
|
|
/* end of Network */
|
2017-12-13 20:38:56 +08:00
|
|
|
|
|
|
|
/* VBUS(Virtual Software BUS) */
|
|
|
|
|
2021-12-02 11:02:36 +08:00
|
|
|
/* end of VBUS(Virtual Software BUS) */
|
2017-12-13 20:38:56 +08:00
|
|
|
|
|
|
|
/* Utilities */
|
|
|
|
|
2021-12-02 11:02:36 +08:00
|
|
|
/* end of Utilities */
|
|
|
|
/* end of RT-Thread Components */
|
2017-12-13 20:38:56 +08:00
|
|
|
|
2021-09-25 11:37:26 +08:00
|
|
|
/* RT-Thread Utestcases */
|
|
|
|
|
2021-12-02 11:02:36 +08:00
|
|
|
/* end of RT-Thread Utestcases */
|
2021-09-25 11:37:26 +08:00
|
|
|
|
2017-12-13 20:38:56 +08:00
|
|
|
/* RT-Thread online packages */
|
|
|
|
|
|
|
|
/* IoT - internet of things */
|
|
|
|
|
2018-03-03 16:34:01 +08:00
|
|
|
|
|
|
|
/* Wi-Fi */
|
|
|
|
|
|
|
|
/* Marvell WiFi */
|
|
|
|
|
2021-12-02 11:02:36 +08:00
|
|
|
/* end of Marvell WiFi */
|
2018-03-03 16:34:01 +08:00
|
|
|
|
|
|
|
/* Wiced WiFi */
|
|
|
|
|
2021-12-02 11:02:36 +08:00
|
|
|
/* end of Wiced WiFi */
|
|
|
|
/* end of Wi-Fi */
|
2019-07-19 16:14:02 +08:00
|
|
|
|
|
|
|
/* IoT Cloud */
|
|
|
|
|
2021-12-02 11:02:36 +08:00
|
|
|
/* end of IoT Cloud */
|
|
|
|
/* end of IoT - internet of things */
|
2017-12-13 20:38:56 +08:00
|
|
|
|
|
|
|
/* security packages */
|
|
|
|
|
2021-12-02 11:02:36 +08:00
|
|
|
/* end of security packages */
|
2017-12-13 20:38:56 +08:00
|
|
|
|
|
|
|
/* language packages */
|
|
|
|
|
2021-12-02 11:02:36 +08:00
|
|
|
/* end of language packages */
|
2017-12-13 20:38:56 +08:00
|
|
|
|
|
|
|
/* multimedia packages */
|
|
|
|
|
2021-10-29 02:23:07 +08:00
|
|
|
/* LVGL: powerful and easy-to-use embedded GUI library */
|
2017-12-13 20:38:56 +08:00
|
|
|
|
2021-12-02 11:02:36 +08:00
|
|
|
/* end of LVGL: powerful and easy-to-use embedded GUI library */
|
2021-10-14 14:48:32 +08:00
|
|
|
|
|
|
|
/* u8g2: a monochrome graphic library */
|
|
|
|
|
2021-12-02 11:02:36 +08:00
|
|
|
/* end of u8g2: a monochrome graphic library */
|
|
|
|
|
|
|
|
/* PainterEngine: A cross-platform graphics application framework written in C language */
|
|
|
|
|
|
|
|
/* end of PainterEngine: A cross-platform graphics application framework written in C language */
|
|
|
|
/* end of multimedia packages */
|
2021-10-13 01:37:14 +08:00
|
|
|
|
2017-12-13 20:38:56 +08:00
|
|
|
/* tools packages */
|
|
|
|
|
2021-12-02 11:02:36 +08:00
|
|
|
/* end of tools packages */
|
2019-07-19 16:14:02 +08:00
|
|
|
|
|
|
|
/* system packages */
|
|
|
|
|
2021-12-16 16:23:58 +08:00
|
|
|
/* enhanced kernel services */
|
|
|
|
|
|
|
|
/* end of enhanced kernel services */
|
|
|
|
|
2021-09-25 11:37:26 +08:00
|
|
|
/* acceleration: Assembly language or algorithmic acceleration packages */
|
|
|
|
|
2021-12-02 11:02:36 +08:00
|
|
|
/* end of acceleration: Assembly language or algorithmic acceleration packages */
|
|
|
|
|
|
|
|
/* CMSIS: ARM Cortex-M Microcontroller Software Interface Standard */
|
|
|
|
|
|
|
|
/* end of CMSIS: ARM Cortex-M Microcontroller Software Interface Standard */
|
2019-07-19 16:14:02 +08:00
|
|
|
|
2021-03-16 15:20:27 +08:00
|
|
|
/* Micrium: Micrium software products porting for RT-Thread */
|
|
|
|
|
2021-12-02 11:02:36 +08:00
|
|
|
/* end of Micrium: Micrium software products porting for RT-Thread */
|
|
|
|
/* end of system packages */
|
2021-03-16 15:20:27 +08:00
|
|
|
|
2019-07-19 16:14:02 +08:00
|
|
|
/* peripheral libraries and drivers */
|
|
|
|
|
2021-12-02 11:02:36 +08:00
|
|
|
/* end of peripheral libraries and drivers */
|
2017-12-13 20:38:56 +08:00
|
|
|
|
2021-03-31 21:38:19 +08:00
|
|
|
/* AI packages */
|
|
|
|
|
2021-12-02 11:02:36 +08:00
|
|
|
/* end of AI packages */
|
2021-03-31 21:38:19 +08:00
|
|
|
|
2017-12-13 20:38:56 +08:00
|
|
|
/* miscellaneous packages */
|
|
|
|
|
2019-07-19 16:14:02 +08:00
|
|
|
/* samples: kernel and components samples */
|
2017-12-13 20:38:56 +08:00
|
|
|
|
2021-12-02 11:02:36 +08:00
|
|
|
/* end of samples: kernel and components samples */
|
2021-03-16 15:20:27 +08:00
|
|
|
|
2021-03-31 21:38:19 +08:00
|
|
|
/* entertainment: terminal games and other interesting software packages */
|
2021-03-16 15:20:27 +08:00
|
|
|
|
2021-12-02 11:02:36 +08:00
|
|
|
/* end of entertainment: terminal games and other interesting software packages */
|
|
|
|
/* end of miscellaneous packages */
|
|
|
|
/* end of RT-Thread online packages */
|
2021-03-31 21:38:19 +08:00
|
|
|
#define SOC_SIMULATOR
|
2017-12-13 20:38:56 +08:00
|
|
|
#define RT_USING_DFS_WINSHAREDIR
|
|
|
|
#include "rtconfig_project.h"
|
2015-09-30 17:57:58 +08:00
|
|
|
|
2013-01-08 22:40:58 +08:00
|
|
|
#endif
|