rtconfig.h 11.0 KB
Newer Older
B
Bernard Xiong 已提交
1 2 3 4 5 6 7 8 9
#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
S
shaojinchun 已提交
10 11
#define RT_USING_SMP
#define RT_CPUS_NR 2
B
Bernard Xiong 已提交
12
#define RT_ALIGN_SIZE 4
S
shaojinchun 已提交
13
/* RT_THREAD_PRIORITY_8 is not set */
14
#define RT_THREAD_PRIORITY_32
S
shaojinchun 已提交
15
/* RT_THREAD_PRIORITY_256 is not set */
B
Bernard Xiong 已提交
16 17 18 19
#define RT_THREAD_PRIORITY_MAX 32
#define RT_TICK_PER_SECOND 100
#define RT_USING_OVERFLOW_CHECK
#define RT_USING_HOOK
S
shaojinchun 已提交
20
#define RT_USING_IDLE_HOOK
21
#define RT_IDEL_HOOK_LIST_SIZE 4
22
#define IDLE_THREAD_STACK_SIZE 1024
23 24 25
#define RT_USING_TIMER_SOFT
#define RT_TIMER_THREAD_PRIO 4
#define RT_TIMER_THREAD_STACK_SIZE 1024
Lawlieta's avatar
Lawlieta 已提交
26
#define RT_DEBUG
S
shaojinchun 已提交
27 28 29 30 31 32 33 34 35 36
/* RT_DEBUG_INIT_CONFIG is not set */
/* RT_DEBUG_THREAD_CONFIG is not set */
/* RT_DEBUG_SCHEDULER_CONFIG is not set */
/* RT_DEBUG_IPC_CONFIG is not set */
/* RT_DEBUG_TIMER_CONFIG is not set */
/* RT_DEBUG_IRQ_CONFIG is not set */
/* RT_DEBUG_MEM_CONFIG is not set */
/* RT_DEBUG_SLAB_CONFIG is not set */
/* RT_DEBUG_MEMHEAP_CONFIG is not set */
/* RT_DEBUG_MODULE_CONFIG is not set */
B
Bernard Xiong 已提交
37 38 39 40 41 42 43 44

/* Inter-Thread communication */

#define RT_USING_SEMAPHORE
#define RT_USING_MUTEX
#define RT_USING_EVENT
#define RT_USING_MAILBOX
#define RT_USING_MESSAGEQUEUE
45
#define RT_USING_SIGNALS
B
Bernard Xiong 已提交
46 47 48 49 50

/* Memory Management */

#define RT_USING_MEMPOOL
#define RT_USING_MEMHEAP
S
shaojinchun 已提交
51
/* RT_USING_NOHEAP is not set */
B
Bernard Xiong 已提交
52
#define RT_USING_SMALL_MEM
S
shaojinchun 已提交
53 54
/* RT_USING_SLAB is not set */
/* RT_USING_MEMHEAP_AS_HEAP is not set */
55
#define RT_USING_MEMTRACE
56
#define RT_USING_HEAP
B
Bernard Xiong 已提交
57 58 59 60

/* Kernel Device Object */

#define RT_USING_DEVICE
S
shaojinchun 已提交
61
/* RT_USING_DEVICE_OPS is not set */
62
#define RT_USING_INTERRUPT_INFO
B
Bernard Xiong 已提交
63 64 65
#define RT_USING_CONSOLE
#define RT_CONSOLEBUF_SIZE 128
#define RT_CONSOLE_DEVICE_NAME "uart0"
S
shaojinchun 已提交
66
#define RT_VER_NUM 0x40000
67 68 69
#define ARCH_ARM
#define ARCH_ARM_CORTEX_A
#define ARCH_ARM_CORTEX_A9
S
shaojinchun 已提交
70
/* ARCH_CPU_STACK_GROWS_UPWARD is not set */
B
Bernard Xiong 已提交
71 72 73 74 75

/* RT-Thread Components */

#define RT_USING_COMPONENTS_INIT
#define RT_USING_USER_MAIN
76
#define RT_MAIN_THREAD_STACK_SIZE 2048
77
#define RT_MAIN_THREAD_PRIORITY 10
B
Bernard Xiong 已提交
78 79 80

/* C++ features */

81
#define RT_USING_CPLUSPLUS
B
Bernard Xiong 已提交
82 83 84 85

/* Command shell */

#define RT_USING_FINSH
86
#define FINSH_THREAD_NAME "tshell"
B
bernard 已提交
87
#define FINSH_USING_HISTORY
88
#define FINSH_HISTORY_LINES 5
B
Bernard Xiong 已提交
89 90
#define FINSH_USING_SYMTAB
#define FINSH_USING_DESCRIPTION
S
shaojinchun 已提交
91
/* FINSH_ECHO_DISABLE_DEFAULT is not set */
B
bernard 已提交
92
#define FINSH_THREAD_PRIORITY 20
B
Bernard Xiong 已提交
93
#define FINSH_THREAD_STACK_SIZE 4096
B
bernard 已提交
94
#define FINSH_CMD_SIZE 80
S
shaojinchun 已提交
95
/* FINSH_USING_AUTH is not set */
B
Bernard Xiong 已提交
96 97
#define FINSH_USING_MSH
#define FINSH_USING_MSH_DEFAULT
S
shaojinchun 已提交
98
/* FINSH_USING_MSH_ONLY is not set */
99
#define FINSH_ARG_MAX 10
B
Bernard Xiong 已提交
100 101 102 103 104 105

/* Device virtual file system */

#define RT_USING_DFS
#define DFS_USING_WORKDIR
#define DFS_FILESYSTEMS_MAX 2
S
shaojinchun 已提交
106
#define DFS_FILESYSTEM_TYPES_MAX 8
Lawlieta's avatar
Lawlieta 已提交
107
#define DFS_FD_MAX 16
S
shaojinchun 已提交
108
/* RT_USING_DFS_MNTTABLE is not set */
B
Bernard Xiong 已提交
109
#define RT_USING_DFS_ELMFAT
110 111 112

/* elm-chan's FatFs, Generic FAT Filesystem Module */

B
Bernard Xiong 已提交
113
#define RT_DFS_ELM_CODE_PAGE 437
B
bernard 已提交
114
#define RT_DFS_ELM_WORD_ACCESS
S
shaojinchun 已提交
115 116 117
/* 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 */
118 119
#define RT_DFS_ELM_USE_LFN_3
#define RT_DFS_ELM_USE_LFN 3
B
bernard 已提交
120
#define RT_DFS_ELM_MAX_LFN 255
B
Bernard Xiong 已提交
121
#define RT_DFS_ELM_DRIVES 2
122
#define RT_DFS_ELM_MAX_SECTOR_SIZE 4096
S
shaojinchun 已提交
123
/* RT_DFS_ELM_USE_ERASE is not set */
B
Bernard Xiong 已提交
124 125
#define RT_DFS_ELM_REENTRANT
#define RT_USING_DFS_DEVFS
126 127
#define RT_USING_DFS_ROMFS
#define RT_USING_DFS_RAMFS
S
shaojinchun 已提交
128 129 130
/* RT_USING_DFS_UFFS is not set */
/* RT_USING_DFS_JFFS2 is not set */
/* RT_USING_DFS_NFS is not set */
B
Bernard Xiong 已提交
131 132 133 134

/* Device Drivers */

#define RT_USING_DEVICE_IPC
135
#define RT_PIPE_BUFSZ 512
B
Bernard Xiong 已提交
136
#define RT_USING_SERIAL
137
#define RT_SERIAL_USING_DMA
S
shaojinchun 已提交
138 139 140
/* RT_USING_CAN is not set */
/* RT_USING_HWTIMER is not set */
/* RT_USING_CPUTIME is not set */
141 142
#define RT_USING_I2C
#define RT_USING_I2C_BITOPS
B
Bernard Xiong 已提交
143
#define RT_USING_PIN
S
shaojinchun 已提交
144 145
/* RT_USING_ADC is not set */
/* RT_USING_PWM is not set */
146 147 148
#define RT_USING_MTD_NOR
#define RT_USING_MTD_NAND
#define RT_MTD_NAND_DEBUG
S
shaojinchun 已提交
149 150
/* RT_USING_MTD is not set */
/* RT_USING_PM is not set */
151
#define RT_USING_RTC
152
#define RT_USING_SOFT_RTC
153
#define RT_USING_SDIO
154 155 156 157 158
#define RT_SDIO_STACK_SIZE 512
#define RT_SDIO_THREAD_PRIORITY 15
#define RT_MMCSD_STACK_SIZE 1024
#define RT_MMCSD_THREAD_PREORITY 22
#define RT_MMCSD_MAX_PARTITION 16
S
shaojinchun 已提交
159
/* RT_SDIO_DEBUG is not set */
160
#define RT_USING_SPI
S
shaojinchun 已提交
161
/* RT_USING_QSPI is not set */
162
#define RT_USING_SPI_MSD
163 164 165
#define RT_USING_SFUD
#define RT_SFUD_USING_SFDP
#define RT_SFUD_USING_FLASH_INFO_TABLE
S
shaojinchun 已提交
166
/* RT_SFUD_USING_QSPI is not set */
S
shaojinchun 已提交
167 168 169 170 171
/* RT_DEBUG_SFUD is not set */
/* RT_USING_W25QXX is not set */
/* RT_USING_GD is not set */
/* RT_USING_ENC28J60 is not set */
/* RT_USING_SPI_WIFI is not set */
172
#define RT_USING_WDT
S
shaojinchun 已提交
173
/* RT_USING_AUDIO is not set */
174

175 176
/* Using WiFi */

S
shaojinchun 已提交
177
/* RT_USING_WIFI is not set */
178

179 180
/* Using USB */

S
shaojinchun 已提交
181 182
/* RT_USING_USB_HOST is not set */
/* RT_USING_USB_DEVICE is not set */
B
Bernard Xiong 已提交
183

B
bernard 已提交
184
/* POSIX layer and C standard library */
B
Bernard Xiong 已提交
185 186 187

#define RT_USING_LIBC
#define RT_USING_PTHREADS
B
bernard 已提交
188
#define RT_USING_POSIX
189
#define RT_USING_POSIX_MMAP
B
bernard 已提交
190
#define RT_USING_POSIX_TERMIOS
191
#define RT_USING_POSIX_AIO
S
shaojinchun 已提交
192
/* RT_USING_MODULE is not set */
B
Bernard Xiong 已提交
193

Lawlieta's avatar
Lawlieta 已提交
194 195 196 197 198 199 200 201 202 203 204
/* Network */

/* Socket abstraction layer */

#define RT_USING_SAL

/* protocol stack implement */

#define SAL_USING_LWIP
#define SAL_USING_POSIX
#define SAL_PROTO_FAMILIES_NUM 4
B
Bernard Xiong 已提交
205 206 207

/* light weight TCP/IP stack */

208
#define RT_USING_LWIP
S
shaojinchun 已提交
209
/* RT_USING_LWIP141 is not set */
210
#define RT_USING_LWIP202
S
shaojinchun 已提交
211
/* RT_USING_LWIP210 is not set */
212
#define RT_USING_LWIP_IPV6
S
shaojinchun 已提交
213
/* RT_LWIP_IGMP is not set */
214
#define RT_LWIP_ICMP
S
shaojinchun 已提交
215
/* RT_LWIP_SNMP is not set */
216 217 218 219 220 221 222 223 224 225 226 227
#define RT_LWIP_DNS
#define RT_LWIP_DHCP
#define IP_SOF_BROADCAST 1
#define IP_SOF_BROADCAST_RECV 1

/* Static IPv4 Address */

#define RT_LWIP_IPADDR "192.168.1.30"
#define RT_LWIP_GWADDR "192.168.1.1"
#define RT_LWIP_MSKADDR "255.255.255.0"
#define RT_LWIP_UDP
#define RT_LWIP_TCP
S
shaojinchun 已提交
228 229
/* RT_LWIP_RAW is not set */
/* RT_LWIP_PPP is not set */
230
#define RT_MEMP_NUM_NETCONN 8
231 232 233 234 235 236 237 238 239 240
#define RT_LWIP_PBUF_NUM 16
#define RT_LWIP_RAW_PCB_NUM 4
#define RT_LWIP_UDP_PCB_NUM 4
#define RT_LWIP_TCP_PCB_NUM 4
#define RT_LWIP_TCP_SEG_NUM 40
#define RT_LWIP_TCP_SND_BUF 8196
#define RT_LWIP_TCP_WND 8196
#define RT_LWIP_TCPTHREAD_PRIORITY 10
#define RT_LWIP_TCPTHREAD_MBOX_SIZE 8
#define RT_LWIP_TCPTHREAD_STACKSIZE 1024
S
shaojinchun 已提交
241 242
/* LWIP_NO_RX_THREAD is not set */
/* LWIP_NO_TX_THREAD is not set */
243 244 245
#define RT_LWIP_ETHTHREAD_PRIORITY 12
#define RT_LWIP_ETHTHREAD_STACKSIZE 1024
#define RT_LWIP_ETHTHREAD_MBOX_SIZE 8
246
#define RT_LWIP_REASSEMBLY_FRAG
247 248 249 250 251
#define LWIP_NETIF_STATUS_CALLBACK 1
#define SO_REUSE 1
#define LWIP_SO_RCVTIMEO 1
#define LWIP_SO_SNDTIMEO 1
#define LWIP_SO_RCVBUF 1
S
shaojinchun 已提交
252
/* RT_LWIP_NETIF_LOOPBACK is not set */
253
#define LWIP_NETIF_LOOPBACK 0
S
shaojinchun 已提交
254 255
/* RT_LWIP_STATS is not set */
/* RT_LWIP_DEBUG is not set */
B
Bernard Xiong 已提交
256 257 258

/* Modbus master and slave stack */

S
shaojinchun 已提交
259
/* RT_USING_MODBUS is not set */
260

261 262
/* AT commands */

S
shaojinchun 已提交
263 264
/* RT_USING_AT is not set */
/* LWIP_USING_DHCPD is not set */
265

266 267
/* VBUS(Virtual Software BUS) */

S
shaojinchun 已提交
268
/* RT_USING_VBUS is not set */
B
bernard 已提交
269

270 271 272 273
/* Utilities */

#define RT_USING_LOGTRACE
#define LOG_TRACE_MAX_SESSION 16
S
shaojinchun 已提交
274 275 276
/* LOG_TRACE_USING_LEVEL_NOTRACE is not set */
/* LOG_TRACE_USING_LEVEL_ERROR is not set */
/* LOG_TRACE_USING_LEVEL_WARNING is not set */
277
#define LOG_TRACE_USING_LEVEL_INFO
S
shaojinchun 已提交
278 279 280 281 282
/* LOG_TRACE_USING_LEVEL_VERBOSE is not set */
/* LOG_TRACE_USING_LEVEL_DEBUG is not set */
/* LOG_TRACE_USING_MEMLOG is not set */
/* RT_USING_RYM is not set */
/* RT_USING_ULOG is not set */
S
shaojinchun 已提交
283
#define RT_USING_LWP
284

B
Bernard Xiong 已提交
285 286 287 288
/* RT-Thread online packages */

/* IoT - internet of things */

S
shaojinchun 已提交
289 290
/* PKG_USING_PAHOMQTT is not set */
/* PKG_USING_WEBCLIENT is not set */
S
shaojinchun 已提交
291
/* PKG_USING_WEBNET is not set */
S
shaojinchun 已提交
292 293 294 295 296 297 298
/* PKG_USING_MONGOOSE is not set */
/* PKG_USING_WEBTERMINAL is not set */
/* PKG_USING_CJSON is not set */
/* PKG_USING_JSMN is not set */
/* PKG_USING_LJSON is not set */
/* PKG_USING_EZXML is not set */
/* PKG_USING_NANOPB is not set */
299 300 301 302 303

/* Wi-Fi */

/* Marvell WiFi */

S
shaojinchun 已提交
304
/* PKG_USING_WLANMARVELL is not set */
305 306 307

/* Wiced WiFi */

S
shaojinchun 已提交
308 309 310 311 312
/* 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 */
/* PKG_USING_AT_DEVICE is not set */
S
shaojinchun 已提交
313
/* PKG_USING_WIZNET is not set */
314

315 316
/* IoT Cloud */

S
shaojinchun 已提交
317 318 319 320
/* PKG_USING_ONENET is not set */
/* PKG_USING_GAGENT_CLOUD is not set */
/* PKG_USING_ALI_IOTKIT is not set */
/* PKG_USING_AZURE is not set */
S
shaojinchun 已提交
321
/* PKG_USING_TENCENT_IOTKIT is not set */
322

B
bernard 已提交
323
/* security packages */
B
Bernard Xiong 已提交
324

S
shaojinchun 已提交
325 326 327
/* PKG_USING_MBEDTLS is not set */
/* PKG_USING_libsodium is not set */
/* PKG_USING_TINYCRYPT is not set */
B
Bernard Xiong 已提交
328

B
bernard 已提交
329
/* language packages */
B
Bernard Xiong 已提交
330

S
shaojinchun 已提交
331 332 333
/* PKG_USING_LUA is not set */
/* PKG_USING_JERRYSCRIPT is not set */
/* PKG_USING_MICROPYTHON is not set */
B
Bernard Xiong 已提交
334

B
bernard 已提交
335 336
/* multimedia packages */

S
shaojinchun 已提交
337 338
/* PKG_USING_OPENMV is not set */
/* PKG_USING_MUPDF is not set */
339

B
bernard 已提交
340
/* tools packages */
B
Bernard Xiong 已提交
341

S
shaojinchun 已提交
342 343 344 345
/* PKG_USING_CMBACKTRACE is not set */
/* PKG_USING_EASYFLASH is not set */
/* PKG_USING_EASYLOGGER is not set */
/* PKG_USING_SYSTEMVIEW is not set */
S
shaojinchun 已提交
346 347 348
/* PKG_USING_RDB is not set */
/* PKG_USING_QRCODE is not set */
/* PKG_USING_ULOG_EASYFLASH is not set */
349 350 351

/* system packages */

S
shaojinchun 已提交
352 353 354 355 356 357 358 359 360 361
/* PKG_USING_GUIENGINE is not set */
/* PKG_USING_PERSIMMON is not set */
/* PKG_USING_CAIRO is not set */
/* PKG_USING_PIXMAN is not set */
/* PKG_USING_LWEXT4 is not set */
/* PKG_USING_PARTITION is not set */
/* PKG_USING_FAL is not set */
/* PKG_USING_SQLITE is not set */
/* PKG_USING_RTI is not set */
/* PKG_USING_LITTLEVGL2RTT is not set */
S
shaojinchun 已提交
362
/* PKG_USING_CMSIS is not set */
S
shaojinchun 已提交
363 364
/* PKG_USING_DFS_YAFFS is not set */
/* PKG_USING_LITTLEFS is not set */
365 366 367

/* peripheral libraries and drivers */

S
shaojinchun 已提交
368 369 370
/* PKG_USING_REALTEK_AMEBA is not set */
/* PKG_USING_SHT2X is not set */
/* PKG_USING_AHT10 is not set */
S
shaojinchun 已提交
371 372 373
/* PKG_USING_AP3216C is not set */
/* PKG_USING_STM32_SDIO is not set */
/* PKG_USING_ICM20608 is not set */
S
shaojinchun 已提交
374 375 376 377 378
/* PKG_USING_U8G2 is not set */
/* PKG_USING_BUTTON is not set */
/* PKG_USING_MPU6XXX is not set */
/* PKG_USING_PCF8574 is not set */
/* PKG_USING_KENDRYTE_SDK is not set */
B
bernard 已提交
379 380 381

/* miscellaneous packages */

S
shaojinchun 已提交
382 383 384 385 386 387 388 389 390
/* PKG_USING_LIBCSV is not set */
/* PKG_USING_OPTPARSE is not set */
/* PKG_USING_FASTLZ is not set */
/* PKG_USING_MINILZO is not set */
/* PKG_USING_QUICKLZ is not set */
/* PKG_USING_MULTIBUTTON is not set */
/* PKG_USING_CANFESTIVAL is not set */
/* PKG_USING_ZLIB is not set */
/* PKG_USING_DSTR is not set */
S
shaojinchun 已提交
391
/* PKG_USING_TINYFRAME is not set */
392 393 394

/* sample package */

S
shaojinchun 已提交
395 396 397 398 399 400
/* samples: kernel and components samples */

/* PKG_USING_KERNEL_SAMPLES is not set */
/* PKG_USING_FILESYSTEM_SAMPLES is not set */
/* PKG_USING_NETWORK_SAMPLES is not set */
/* PKG_USING_PERIPHERAL_SAMPLES is not set */
401 402 403

/* example package: hello */

S
shaojinchun 已提交
404
/* PKG_USING_HELLO is not set */
S
shaojinchun 已提交
405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426

/* Privated Packages of RealThread */

/* PKG_USING_CODEC is not set */
/* PKG_USING_PLAYER is not set */
/* PKG_USING_PERSIMMON_SRC is not set */
/* PKG_USING_JS_PERSIMMON is not set */
/* PKG_USING_JERRYSCRIPT_WIN32 is not set */

/* Network Utilities */

/* PKG_USING_MDNS is not set */
/* PKG_USING_UPNP is not set */
/* PKG_USING_WICED is not set */
/* PKG_USING_CLOUDSDK is not set */
/* PKG_USING_COREMARK is not set */
/* PKG_USING_POWER_MANAGER is not set */
/* PKG_USING_RT_OTA is not set */
/* PKG_USING_RDBD_SRC is not set */
/* PKG_USING_RTINSIGHT is not set */
/* PKG_USING_SMARTCONFIG is not set */
/* PKG_USING_RTX is not set */
427
#define SOC_VEXPRESS_A9
B
Bernard Xiong 已提交
428 429
#define RT_USING_UART0
#define RT_USING_UART1
430
#define BSP_DRV_EMAC
S
shaojinchun 已提交
431
/* BSP_DRV_AUDIO is not set */
B
Bernard Xiong 已提交
432 433

#endif