rtconfig.h 3.1 KB
Newer Older
1 2
#ifndef RT_CONFIG_H__
#define RT_CONFIG_H__
A
ardafu 已提交
3

4 5
/* Automatically generated file; DO NOT EDIT. */
/* RT-Thread Configuration */
A
ardafu 已提交
6

7
/* RT-Thread Kernel */
A
ardafu 已提交
8

9 10 11 12
#define RT_NAME_MAX 8
#define RT_ALIGN_SIZE 4
#define RT_THREAD_PRIORITY_MAX 32
#define RT_TICK_PER_SECOND 100
A
ardafu 已提交
13 14
#define RT_DEBUG
#define RT_USING_OVERFLOW_CHECK
15 16
#define RT_DEBUG_INIT 0
/* RT_DEBUG_THREAD is not set */
A
ardafu 已提交
17
#define RT_USING_HOOK
18 19 20 21
#define IDLE_THREAD_STACK_SIZE 256
#define RT_USING_TIMER_SOFT
#define RT_TIMER_THREAD_PRIO 4
#define RT_TIMER_THREAD_STACK_SIZE 512
A
ardafu 已提交
22

23
/* Inter-Thread communication */
A
ardafu 已提交
24 25 26 27 28 29

#define RT_USING_SEMAPHORE
#define RT_USING_MUTEX
#define RT_USING_EVENT
#define RT_USING_MAILBOX
#define RT_USING_MESSAGEQUEUE
30
/* RT_USING_SIGNALS is not set */
A
ardafu 已提交
31

32
/* Memory Management */
A
ardafu 已提交
33

34 35
#define RT_USING_MEMPOOL
/* RT_USING_MEMHEAP is not set */
A
ardafu 已提交
36 37
#define RT_USING_HEAP
#define RT_USING_SMALL_MEM
38 39 40
/* RT_USING_SLAB is not set */

/* Kernel Device Object */
A
ardafu 已提交
41 42

#define RT_USING_DEVICE
43 44 45 46
#define RT_USING_CONSOLE
#define RT_CONSOLEBUF_SIZE 128
#define RT_CONSOLE_DEVICE_NAME "uart2"
/* RT_USING_MODULE is not set */
A
ardafu 已提交
47

48
/* RT-Thread Components */
A
ardafu 已提交
49

50 51
#define RT_USING_COMPONENTS_INIT
#define RT_USING_USER_MAIN
A
ardafu 已提交
52

53 54 55 56 57
/* C++ features */

/* RT_USING_CPLUSPLUS is not set */

/* Command shell */
A
ardafu 已提交
58 59

#define RT_USING_FINSH
60
#define FINSH_USING_HISTORY
A
ardafu 已提交
61 62
#define FINSH_USING_SYMTAB
#define FINSH_USING_DESCRIPTION
63 64 65 66 67
#define FINSH_THREAD_PRIORITY 20
#define FINSH_THREAD_STACK_SIZE 4096
#define FINSH_CMD_SIZE 80
/* FINSH_USING_AUTH is not set */
/* FINSH_USING_MSH is not set */
A
ardafu 已提交
68

69
/* Device virtual file system */
A
ardafu 已提交
70

71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
/* RT_USING_DFS is not set */

/* Device Drivers */

#define RT_USING_DEVICE_IPC
#define RT_USING_SERIAL
/* RT_USING_CAN is not set */
/* RT_USING_HWTIMER is not set */
/* RT_USING_I2C is not set */
/* RT_USING_PIN is not set */
/* 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 */
/* RT_USING_USB_HOST is not set */
/* RT_USING_USB_DEVICE is not set */
A
ardafu 已提交
89

90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
/* POSIX layer and C standard library */

/* RT_USING_LIBC is not set */
/* RT_USING_PTHREADS is not set */

/* Network stack */

/* light weight TCP/IP stack */

/* RT_USING_LWIP is not set */

/* Modbus master and slave stack */

/* RT_USING_MODBUS is not set */

/* RT-Thread UI Engine */

/* RT_USING_GUIENGINE is not set */

/* RT-Thread online packages */

/* system packages */

/* PKG_USING_PARTITION is not set */
/* PKG_USING_SQLITE is not set */

/* IoT - internet of things */

/* 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 */
/* PKG_USING_EZXML is not set */

/* Marvell WiFi */

/* PKG_USING_MARVELLWIFI is not set */

/* security packages */

/* PKG_USING_MBEDTLS is not set */

/* language packages */

/* PKG_USING_JERRYSCRIPT is not set */

/* multimedia packages */

/* tools packages */

/* PKG_USING_CMBACKTRACE is not set */
/* PKG_USING_EASYLOGGER is not set */

/* miscellaneous packages */

/* PKG_USING_HELLO is not set */

/* BSP_SPECIAL CONFIG */

#define RT_USING_UART2
A
ardafu 已提交
151 152

#endif