forked from xuos/xiuos
232 lines
4.4 KiB
C
232 lines
4.4 KiB
C
#ifndef RT_CONFIG_H__
|
|
#define RT_CONFIG_H__
|
|
|
|
/* Automatically generated file; DO NOT EDIT. */
|
|
/* RT-Thread Configuration */
|
|
|
|
#define ROOT_DIR "../../../.."
|
|
#define BSP_DIR "."
|
|
#define RT_Thread_DIR "../.."
|
|
#define RTT_DIR "../../rt-thread"
|
|
|
|
/* 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 1000
|
|
#define RT_USING_OVERFLOW_CHECK
|
|
#define RT_USING_HOOK
|
|
#define RT_USING_IDLE_HOOK
|
|
#define RT_IDLE_HOOK_LIST_SIZE 4
|
|
#define IDLE_THREAD_STACK_SIZE 256
|
|
|
|
/* kservice optimization */
|
|
|
|
#define RT_KSERVICE_USING_STDLIB
|
|
#define RT_DEBUG
|
|
#define RT_DEBUG_COLOR
|
|
|
|
/* Inter-Thread communication */
|
|
|
|
#define RT_USING_SEMAPHORE
|
|
#define RT_USING_MUTEX
|
|
#define RT_USING_EVENT
|
|
#define RT_USING_MAILBOX
|
|
#define RT_USING_MESSAGEQUEUE
|
|
|
|
/* Memory Management */
|
|
|
|
#define RT_USING_MEMPOOL
|
|
#define RT_USING_MEMHEAP
|
|
#define RT_USING_MEMHEAP_AUTO_BINDING
|
|
#define RT_USING_MEMHEAP_AS_HEAP
|
|
#define RT_USING_HEAP
|
|
|
|
/* Kernel Device Object */
|
|
|
|
#define RT_USING_DEVICE
|
|
#define RT_USING_CONSOLE
|
|
#define RT_CONSOLEBUF_SIZE 128
|
|
#define RT_CONSOLE_DEVICE_NAME "uart1"
|
|
#define RT_VER_NUM 0x40004
|
|
#define ARCH_ARM
|
|
#define RT_USING_CPU_FFS
|
|
#define ARCH_ARM_CORTEX_M
|
|
#define ARCH_ARM_CORTEX_M4
|
|
|
|
/* 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 */
|
|
|
|
|
|
/* Command shell */
|
|
|
|
#define RT_USING_FINSH
|
|
#define RT_USING_MSH
|
|
#define FINSH_USING_MSH
|
|
#define FINSH_THREAD_NAME "tshell"
|
|
#define FINSH_THREAD_PRIORITY 20
|
|
#define FINSH_THREAD_STACK_SIZE 4096
|
|
#define FINSH_USING_HISTORY
|
|
#define FINSH_HISTORY_LINES 5
|
|
#define FINSH_USING_SYMTAB
|
|
#define FINSH_CMD_SIZE 80
|
|
#define MSH_USING_BUILT_IN_COMMANDS
|
|
#define FINSH_USING_DESCRIPTION
|
|
#define FINSH_ARG_MAX 10
|
|
|
|
/* Device virtual file system */
|
|
|
|
#define RT_USING_DFS
|
|
#define DFS_USING_WORKDIR
|
|
#define DFS_FILESYSTEMS_MAX 4
|
|
#define DFS_FILESYSTEM_TYPES_MAX 4
|
|
#define DFS_FD_MAX 16
|
|
#define RT_USING_DFS_ELMFAT
|
|
|
|
/* 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_3
|
|
#define RT_DFS_ELM_USE_LFN 3
|
|
#define RT_DFS_ELM_LFN_UNICODE_0
|
|
#define RT_DFS_ELM_LFN_UNICODE 0
|
|
#define RT_DFS_ELM_MAX_LFN 255
|
|
#define RT_DFS_ELM_DRIVES 2
|
|
#define RT_DFS_ELM_MAX_SECTOR_SIZE 4096
|
|
#define RT_DFS_ELM_REENTRANT
|
|
#define RT_DFS_ELM_MUTEX_TIMEOUT 3000
|
|
#define RT_USING_DFS_DEVFS
|
|
#define RT_USING_DFS_ROMFS
|
|
|
|
/* Device Drivers */
|
|
|
|
#define RT_USING_DEVICE_IPC
|
|
#define RT_PIPE_BUFSZ 512
|
|
#define RT_USING_SYSTEM_WORKQUEUE
|
|
#define RT_SYSTEM_WORKQUEUE_STACKSIZE 2048
|
|
#define RT_SYSTEM_WORKQUEUE_PRIORITY 23
|
|
#define RT_USING_SERIAL
|
|
#define RT_USING_SERIAL_V1
|
|
#define RT_SERIAL_RB_BUFSZ 64
|
|
#define RT_USING_CAN
|
|
#define RT_USING_I2C
|
|
#define RT_USING_I2C_BITOPS
|
|
#define RT_USING_PIN
|
|
#define RT_USING_SPI
|
|
#define RT_USING_SPI_MSD
|
|
#define RT_USING_SFUD
|
|
#define RT_SFUD_USING_SFDP
|
|
#define RT_SFUD_USING_FLASH_INFO_TABLE
|
|
#define RT_SFUD_SPI_MAX_HZ 50000000
|
|
|
|
/* Using USB */
|
|
|
|
|
|
/* POSIX layer and C standard library */
|
|
|
|
#define RT_USING_LIBC
|
|
#define RT_USING_PTHREADS
|
|
#define PTHREAD_NUM_MAX 8
|
|
#define RT_USING_POSIX
|
|
#define RT_LIBC_USING_TIME
|
|
#define RT_LIBC_DEFAULT_TIMEZONE 8
|
|
|
|
/* Network */
|
|
|
|
/* Socket abstraction layer */
|
|
|
|
|
|
/* Network interface device */
|
|
|
|
|
|
/* light weight TCP/IP stack */
|
|
|
|
|
|
/* AT commands */
|
|
|
|
|
|
/* VBUS(Virtual Software BUS) */
|
|
|
|
|
|
/* Utilities */
|
|
|
|
|
|
/* RT-Thread Utestcases */
|
|
|
|
#define SOC_FAMILY_STM32
|
|
#define SOC_SERIES_STM32F4
|
|
|
|
/* Hardware Drivers Config */
|
|
|
|
#define SOC_STM32F407ZG
|
|
#define BSP_USING_GPIO
|
|
#define BSP_USING_UART
|
|
#define BSP_USING_UART1
|
|
#define BSP_USING_UART2
|
|
#define BSP_USING_UART3
|
|
#define BSP_USING_USB
|
|
#define BSP_USING_STM32_USBH
|
|
#define USB_BUS_NAME "usb"
|
|
#define USB_DRIVER_NAME "usb_drv"
|
|
#define USB_DEVICE_NAME "usb_dev"
|
|
|
|
/* MicroPython */
|
|
|
|
|
|
/* More Drivers */
|
|
|
|
|
|
/* APP_Framework */
|
|
|
|
/* Framework */
|
|
|
|
#define TRANSFORM_LAYER_ATTRIUBUTE
|
|
#define ADD_RTTHREAD_FEATURES
|
|
#define SUPPORT_CONNECTION_FRAMEWORK
|
|
#define CONNECTION_FRAMEWORK_DEBUG
|
|
#define ADAPTER_HFA21_DRIVER "/dev/uart3"
|
|
#define CONNECTION_ADAPTER_ETHERNET
|
|
#define ADAPTER_HFA21_ETHERNET
|
|
#define ADAPTER_ETHERNET_HFA21 "hfa21_ethernet"
|
|
|
|
/* Security */
|
|
|
|
|
|
/* Applications */
|
|
|
|
/* config stack size and priority of main task */
|
|
|
|
#define MAIN_KTASK_STACK_SIZE 1024
|
|
|
|
/* ota app */
|
|
|
|
|
|
/* test app */
|
|
|
|
|
|
/* connection app */
|
|
|
|
|
|
/* control app */
|
|
|
|
/* knowing app */
|
|
|
|
|
|
/* sensor app */
|
|
|
|
|
|
/* lib */
|
|
|
|
#define APP_SELECT_NEWLIB
|
|
|
|
#endif
|