2018-09-02 18:44:28 +08:00
|
|
|
#ifndef RT_CONFIG_H__
|
|
|
|
#define RT_CONFIG_H__
|
|
|
|
|
|
|
|
/* Automatically generated file; DO NOT EDIT. */
|
|
|
|
/* RT-Thread Project Configuration */
|
|
|
|
|
|
|
|
/* 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
|
|
|
|
#define RT_USING_OVERFLOW_CHECK
|
|
|
|
#define RT_USING_HOOK
|
|
|
|
#define RT_IDEL_HOOK_LIST_SIZE 4
|
|
|
|
#define IDLE_THREAD_STACK_SIZE 1024
|
2018-09-03 00:03:06 +08:00
|
|
|
#define RT_STACK_UPWARD_GROW
|
2018-09-02 18:44:28 +08:00
|
|
|
#define RT_DEBUG
|
|
|
|
|
|
|
|
/* 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_SMALL_MEM
|
|
|
|
#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 "uart2"
|
|
|
|
|
|
|
|
/* RT-Thread Components */
|
|
|
|
|
|
|
|
#define RT_USING_COMPONENTS_INIT
|
|
|
|
|
|
|
|
/* C++ features */
|
|
|
|
|
|
|
|
|
|
|
|
/* Command shell */
|
|
|
|
|
|
|
|
|
|
|
|
/* Device virtual file system */
|
|
|
|
|
|
|
|
|
|
|
|
/* elm-chan's FatFs, Generic FAT Filesystem Module */
|
|
|
|
|
|
|
|
|
|
|
|
/* Device Drivers */
|
|
|
|
|
|
|
|
#define RT_USING_DEVICE_IPC
|
|
|
|
#define RT_PIPE_BUFSZ 512
|
|
|
|
#define RT_USING_SERIAL
|
|
|
|
#define RT_USING_PIN
|
|
|
|
|
|
|
|
/* Using USB */
|
|
|
|
|
|
|
|
|
|
|
|
/* POSIX layer and C standard library */
|
|
|
|
|
|
|
|
|
|
|
|
/* Network */
|
|
|
|
|
|
|
|
/* Socket abstraction layer */
|
|
|
|
|
|
|
|
#define RT_USING_SAL
|
|
|
|
|
|
|
|
/* protocol stack implement */
|
|
|
|
|
|
|
|
|
|
|
|
/* light weight TCP/IP stack */
|
|
|
|
|
|
|
|
|
|
|
|
/* Static IPv4 Address */
|
|
|
|
|
|
|
|
|
|
|
|
/* Modbus master and slave stack */
|
|
|
|
|
|
|
|
|
|
|
|
/* VBUS(Virtual Software BUS) */
|
|
|
|
|
|
|
|
|
|
|
|
/* Utilities */
|
|
|
|
|
|
|
|
|
|
|
|
/* ARM CMSIS */
|
|
|
|
|
|
|
|
|
|
|
|
/* RT-Thread online packages */
|
|
|
|
|
|
|
|
/* IoT - internet of things */
|
|
|
|
|
|
|
|
|
|
|
|
/* Wi-Fi */
|
|
|
|
|
|
|
|
/* Marvell WiFi */
|
|
|
|
|
|
|
|
|
|
|
|
/* Wiced WiFi */
|
|
|
|
|
|
|
|
|
|
|
|
/* security packages */
|
|
|
|
|
|
|
|
|
|
|
|
/* language packages */
|
|
|
|
|
|
|
|
|
|
|
|
/* multimedia packages */
|
|
|
|
|
|
|
|
|
|
|
|
/* tools packages */
|
|
|
|
|
|
|
|
|
|
|
|
/* system packages */
|
|
|
|
|
|
|
|
|
|
|
|
/* peripheral libraries and drivers */
|
|
|
|
|
|
|
|
|
|
|
|
/* miscellaneous packages */
|
|
|
|
|
|
|
|
|
|
|
|
/* sample package */
|
|
|
|
|
|
|
|
|
|
|
|
/* example package: hello */
|
|
|
|
|
|
|
|
#define SOC_STM32F4
|
|
|
|
#define RT_USING_UART1
|
|
|
|
#define RT_USING_UART2
|
|
|
|
#define RT_USING_UART3
|
|
|
|
|
|
|
|
#endif
|