1 #ifndef RT_CONFIG_H__
2 #define RT_CONFIG_H__
3 
4 /* RT-Thread Kernel */
5 
6 /* klibc options */
7 
8 /* rt_vsnprintf options */
9 
10 /* end of rt_vsnprintf options */
11 
12 /* rt_vsscanf options */
13 
14 /* end of rt_vsscanf options */
15 
16 /* rt_memset options */
17 
18 /* end of rt_memset options */
19 
20 /* rt_memcpy options */
21 
22 /* end of rt_memcpy options */
23 
24 /* rt_memmove options */
25 
26 /* end of rt_memmove options */
27 
28 /* rt_memcmp options */
29 
30 /* end of rt_memcmp options */
31 
32 /* rt_strstr options */
33 
34 /* end of rt_strstr options */
35 
36 /* rt_strcasecmp options */
37 
38 /* end of rt_strcasecmp options */
39 
40 /* rt_strncpy options */
41 
42 /* end of rt_strncpy options */
43 
44 /* rt_strcpy options */
45 
46 /* end of rt_strcpy options */
47 
48 /* rt_strncmp options */
49 
50 /* end of rt_strncmp options */
51 
52 /* rt_strcmp options */
53 
54 /* end of rt_strcmp options */
55 
56 /* rt_strlen options */
57 
58 /* end of rt_strlen options */
59 
60 /* rt_strnlen options */
61 
62 /* end of rt_strnlen options */
63 /* end of klibc options */
64 #define RT_NAME_MAX 8
65 #define RT_USING_SMART
66 #define RT_CPUS_NR 1
67 #define RT_ALIGN_SIZE 4
68 #define RT_THREAD_PRIORITY_32
69 #define RT_THREAD_PRIORITY_MAX 32
70 #define RT_TICK_PER_SECOND 1000
71 #define RT_USING_OVERFLOW_CHECK
72 #define RT_USING_HOOK
73 #define RT_HOOK_USING_FUNC_PTR
74 #define RT_USING_IDLE_HOOK
75 #define RT_IDLE_HOOK_LIST_SIZE 4
76 #define IDLE_THREAD_STACK_SIZE 8192
77 #define RT_USING_TIMER_SOFT
78 #define RT_TIMER_THREAD_PRIO 4
79 #define RT_TIMER_THREAD_STACK_SIZE 4096
80 #define RT_USING_CPU_USAGE_TRACER
81 
82 /* kservice options */
83 
84 /* end of kservice options */
85 #define RT_USING_DEBUG
86 #define RT_DEBUGING_ASSERT
87 #define RT_DEBUGING_COLOR
88 #define RT_DEBUGING_CONTEXT
89 
90 /* Inter-Thread communication */
91 
92 #define RT_USING_SEMAPHORE
93 #define RT_USING_MUTEX
94 #define RT_USING_EVENT
95 #define RT_USING_MAILBOX
96 #define RT_USING_MESSAGEQUEUE
97 #define RT_USING_SIGNALS
98 /* end of Inter-Thread communication */
99 
100 /* Memory Management */
101 
102 #define RT_USING_MEMPOOL
103 #define RT_USING_SMALL_MEM
104 #define RT_USING_MEMHEAP
105 #define RT_MEMHEAP_FAST_MODE
106 #define RT_USING_SMALL_MEM_AS_HEAP
107 #define RT_USING_MEMTRACE
108 #define RT_USING_HEAP
109 /* end of Memory Management */
110 #define RT_USING_DEVICE
111 #define RT_USING_DEVICE_OPS
112 #define RT_USING_INTERRUPT_INFO
113 #define RT_USING_CONSOLE
114 #define RT_CONSOLEBUF_SIZE 256
115 #define RT_CONSOLE_DEVICE_NAME "uart0"
116 #define RT_VER_NUM 0x50201
117 #define RT_USING_STDC_ATOMIC
118 #define RT_BACKTRACE_LEVEL_MAX_NR 32
119 /* end of RT-Thread Kernel */
120 #define RT_USING_CACHE
121 #define RT_USING_HW_ATOMIC
122 #define RT_USING_CPU_FFS
123 #define ARCH_MM_MMU
124 #define ARCH_ARM
125 #define ARCH_ARM_MMU
126 #define KERNEL_VADDR_START 0xc0000000
127 #define ARCH_ARM_CORTEX_A
128 #define RT_USING_GIC_V2
129 #define ARCH_ARM_CORTEX_A7
130 #define ARCH_ARM_SECURE_MODE
131 #define RT_BACKTRACE_FUNCTION_NAME
132 
133 /* RT-Thread Components */
134 
135 #define RT_USING_COMPONENTS_INIT
136 #define RT_USING_USER_MAIN
137 #define RT_MAIN_THREAD_STACK_SIZE 4096
138 #define RT_MAIN_THREAD_PRIORITY 10
139 #define RT_USING_MSH
140 #define RT_USING_FINSH
141 #define FINSH_USING_MSH
142 #define FINSH_THREAD_NAME "tshell"
143 #define FINSH_THREAD_PRIORITY 20
144 #define FINSH_THREAD_STACK_SIZE 4096
145 #define FINSH_USING_HISTORY
146 #define FINSH_HISTORY_LINES 5
147 #define FINSH_USING_SYMTAB
148 #define FINSH_CMD_SIZE 80
149 #define MSH_USING_BUILT_IN_COMMANDS
150 #define FINSH_USING_DESCRIPTION
151 #define FINSH_ARG_MAX 10
152 #define FINSH_USING_OPTION_COMPLETION
153 
154 /* DFS: device virtual file system */
155 
156 #define RT_USING_DFS
157 #define DFS_USING_POSIX
158 #define DFS_USING_WORKDIR
159 #define DFS_FD_MAX 32
160 #define RT_USING_DFS_V2
161 #define RT_USING_DFS_ELMFAT
162 
163 /* elm-chan's FatFs, Generic FAT Filesystem Module */
164 
165 #define RT_DFS_ELM_CODE_PAGE 437
166 #define RT_DFS_ELM_WORD_ACCESS
167 #define RT_DFS_ELM_USE_LFN_3
168 #define RT_DFS_ELM_USE_LFN 3
169 #define RT_DFS_ELM_LFN_UNICODE_0
170 #define RT_DFS_ELM_LFN_UNICODE 0
171 #define RT_DFS_ELM_MAX_LFN 255
172 #define RT_DFS_ELM_DRIVES 2
173 #define RT_DFS_ELM_MAX_SECTOR_SIZE 512
174 #define RT_DFS_ELM_REENTRANT
175 #define RT_DFS_ELM_MUTEX_TIMEOUT 3000
176 /* end of elm-chan's FatFs, Generic FAT Filesystem Module */
177 #define RT_USING_DFS_DEVFS
178 #define RT_USING_DFS_ROMFS
179 #define RT_USING_DFS_PTYFS
180 #define RT_USING_DFS_TMPFS
181 #define RT_USING_PAGECACHE
182 
183 /* page cache config */
184 
185 #define RT_PAGECACHE_COUNT 4096
186 #define RT_PAGECACHE_ASPACE_COUNT 1024
187 #define RT_PAGECACHE_PRELOAD 4
188 #define RT_PAGECACHE_HASH_NR 1024
189 #define RT_PAGECACHE_GC_WORK_LEVEL 90
190 #define RT_PAGECACHE_GC_STOP_LEVEL 70
191 /* end of page cache config */
192 /* end of DFS: device virtual file system */
193 
194 /* Device Drivers */
195 
196 #define RT_USING_DEV_BUS
197 #define RT_USING_DEVICE_IPC
198 #define RT_UNAMED_PIPE_NUMBER 64
199 #define RT_USING_SYSTEM_WORKQUEUE
200 #define RT_SYSTEM_WORKQUEUE_STACKSIZE 4096
201 #define RT_SYSTEM_WORKQUEUE_PRIORITY 23
202 #define RT_USING_SERIAL
203 #define RT_USING_SERIAL_V1
204 #define RT_SERIAL_RB_BUFSZ 64
205 #define RT_USING_SERIAL_BYPASS
206 #define RT_USING_CPUTIME
207 #define CPUTIME_TIMER_FREQ 0
208 #define RT_USING_I2C
209 #define RT_USING_NULL
210 #define RT_USING_ZERO
211 #define RT_USING_RANDOM
212 #define RT_USING_PWM
213 #define RT_USING_RTC
214 #define RT_USING_SDIO
215 #define RT_SDIO_STACK_SIZE 4096
216 #define RT_SDIO_THREAD_PRIORITY 15
217 #define RT_MMCSD_STACK_SIZE 4096
218 #define RT_MMCSD_THREAD_PRIORITY 22
219 #define RT_MMCSD_MAX_PARTITION 16
220 #define RT_USING_SPI
221 #define RT_USING_TOUCH
222 #define RT_TOUCH_PIN_IRQ
223 #define RT_USING_LCD
224 #define RT_USING_WIFI
225 #define RT_WLAN_DEVICE_STA_NAME "wlan0"
226 #define RT_WLAN_DEVICE_AP_NAME "wlan1"
227 #define RT_WLAN_SSID_MAX_LENGTH 32
228 #define RT_WLAN_PASSWORD_MAX_LENGTH 32
229 #define RT_WLAN_DEV_EVENT_NUM 2
230 #define RT_WLAN_MANAGE_ENABLE
231 #define RT_WLAN_SCAN_WAIT_MS 10000
232 #define RT_WLAN_CONNECT_WAIT_MS 10000
233 #define RT_WLAN_SCAN_SORT
234 #define RT_WLAN_MSH_CMD_ENABLE
235 #define RT_WLAN_JOIN_SCAN_BY_MGNT
236 #define RT_WLAN_AUTO_CONNECT_ENABLE
237 #define AUTO_CONNECTION_PERIOD_MS 2000
238 #define RT_WLAN_CFG_ENABLE
239 #define RT_WLAN_CFG_INFO_MAX 3
240 #define RT_WLAN_PROT_ENABLE
241 #define RT_WLAN_PROT_NAME_LEN 8
242 #define RT_WLAN_PROT_MAX 2
243 #define RT_WLAN_DEFAULT_PROT "lwip"
244 #define RT_WLAN_PROT_LWIP_ENABLE
245 #define RT_WLAN_PROT_LWIP_NAME "lwip"
246 #define RT_WLAN_WORK_THREAD_ENABLE
247 #define RT_WLAN_WORKQUEUE_THREAD_NAME "wlan"
248 #define RT_WLAN_WORKQUEUE_THREAD_SIZE 2048
249 #define RT_WLAN_WORKQUEUE_THREAD_PRIO 15
250 #define RT_USING_BLK
251 
252 /* Partition Types */
253 
254 #define RT_BLK_PARTITION_DFS
255 #define RT_BLK_PARTITION_EFI
256 /* end of Partition Types */
257 #define RT_USING_PIN
258 #define RT_USING_KTIME
259 /* end of Device Drivers */
260 
261 /* C/C++ and POSIX layer */
262 
263 /* ISO-ANSI C layer */
264 
265 /* Timezone and Daylight Saving Time */
266 
267 #define RT_LIBC_USING_LIGHT_TZ_DST
268 #define RT_LIBC_TZ_DEFAULT_HOUR 8
269 #define RT_LIBC_TZ_DEFAULT_MIN 0
270 #define RT_LIBC_TZ_DEFAULT_SEC 0
271 /* end of Timezone and Daylight Saving Time */
272 /* end of ISO-ANSI C layer */
273 
274 /* POSIX (Portable Operating System Interface) layer */
275 
276 #define RT_USING_POSIX_FS
277 #define RT_USING_POSIX_DEVIO
278 #define RT_USING_POSIX_STDIO
279 #define RT_USING_POSIX_POLL
280 #define RT_USING_POSIX_TERMIOS
281 #define RT_USING_POSIX_DELAY
282 #define RT_USING_POSIX_CLOCK
283 #define RT_USING_POSIX_TIMER
284 
285 /* Interprocess Communication (IPC) */
286 
287 
288 /* Socket is in the 'Network' category */
289 
290 /* end of Interprocess Communication (IPC) */
291 /* end of POSIX (Portable Operating System Interface) layer */
292 /* end of C/C++ and POSIX layer */
293 
294 /* Network */
295 
296 #define RT_USING_SAL
297 #define SAL_INTERNET_CHECK
298 
299 /* Docking with protocol stacks */
300 
301 #define SAL_USING_LWIP
302 /* end of Docking with protocol stacks */
303 #define SAL_USING_POSIX
304 #define RT_USING_NETDEV
305 #define NETDEV_USING_IFCONFIG
306 #define NETDEV_USING_NETSTAT
307 #define NETDEV_USING_AUTO_DEFAULT
308 #define NETDEV_USING_IPV6
309 #define NETDEV_IPV4 1
310 #define NETDEV_IPV6 1
311 #define NETDEV_IPV6_SCOPES
312 #define RT_USING_LWIP
313 #define RT_USING_LWIP212
314 #define RT_USING_LWIP_VER_NUM 0x20102
315 #define RT_USING_LWIP_IPV6
316 #define RT_LWIP_MEM_ALIGNMENT 4
317 #define RT_LWIP_IGMP
318 #define RT_LWIP_ICMP
319 #define RT_LWIP_DNS
320 #define RT_LWIP_DHCP
321 #define IP_SOF_BROADCAST 1
322 #define IP_SOF_BROADCAST_RECV 1
323 
324 /* Static IPv4 Address */
325 
326 #define RT_LWIP_IPADDR "192.168.1.30"
327 #define RT_LWIP_GWADDR "192.168.1.1"
328 #define RT_LWIP_MSKADDR "255.255.255.0"
329 /* end of Static IPv4 Address */
330 #define RT_LWIP_UDP
331 #define RT_LWIP_TCP
332 #define RT_LWIP_RAW
333 #define RT_MEMP_NUM_NETCONN 8
334 #define RT_LWIP_PBUF_NUM 16
335 #define RT_LWIP_RAW_PCB_NUM 4
336 #define RT_LWIP_UDP_PCB_NUM 4
337 #define RT_LWIP_TCP_PCB_NUM 4
338 #define RT_LWIP_TCP_SEG_NUM 40
339 #define RT_LWIP_TCP_SND_BUF 8196
340 #define RT_LWIP_TCP_WND 8196
341 #define RT_LWIP_TCPTHREAD_PRIORITY 10
342 #define RT_LWIP_TCPTHREAD_MBOX_SIZE 8
343 #define RT_LWIP_TCPTHREAD_STACKSIZE 8192
344 #define LWIP_NO_TX_THREAD
345 #define RT_LWIP_ETHTHREAD_PRIORITY 12
346 #define RT_LWIP_ETHTHREAD_STACKSIZE 8192
347 #define RT_LWIP_ETHTHREAD_MBOX_SIZE 8
348 #define LWIP_NETIF_STATUS_CALLBACK 1
349 #define LWIP_NETIF_LINK_CALLBACK 1
350 #define RT_LWIP_NETIF_NAMESIZE 6
351 #define SO_REUSE 1
352 #define LWIP_SO_RCVTIMEO 1
353 #define LWIP_SO_SNDTIMEO 1
354 #define LWIP_SO_RCVBUF 1
355 #define LWIP_SO_LINGER 0
356 #define RT_LWIP_NETIF_LOOPBACK
357 #define LWIP_NETIF_LOOPBACK 1
358 /* end of Network */
359 
360 /* Memory protection */
361 
362 /* end of Memory protection */
363 
364 /* Utilities */
365 
366 #define RT_USING_ULOG
367 #define ULOG_OUTPUT_LVL_D
368 #define ULOG_OUTPUT_LVL 7
369 #define ULOG_ASSERT_ENABLE
370 #define ULOG_LINE_BUF_SIZE 128
371 
372 /* log format */
373 
374 #define ULOG_USING_COLOR
375 #define ULOG_OUTPUT_TIME
376 #define ULOG_OUTPUT_LEVEL
377 #define ULOG_OUTPUT_TAG
378 /* end of log format */
379 #define ULOG_BACKEND_USING_CONSOLE
380 #define RT_USING_RESOURCE_ID
381 #define RT_USING_ADT
382 #define RT_USING_ADT_AVL
383 #define RT_USING_ADT_BITMAP
384 #define RT_USING_ADT_HASHMAP
385 #define RT_USING_ADT_REF
386 /* end of Utilities */
387 
388 /* Memory management */
389 
390 #define RT_PAGE_AFFINITY_BLOCK_SIZE 0x1000
391 #define RT_PAGE_MAX_ORDER 11
392 
393 /* Debugging */
394 
395 /* end of Debugging */
396 /* end of Memory management */
397 #define RT_USING_LWP
398 #define LWP_USING_RUNTIME
399 #define RT_LWP_MAX_NR 30
400 #define LWP_TASK_STACK_SIZE 16384
401 #define RT_CH_MSG_MAX_NR 1024
402 #define LWP_TID_MAX_NR 64
403 #define LWP_ENABLE_ASID
404 #define RT_LWP_SHM_MAX_NR 64
405 #define RT_USING_LDSO
406 #define LWP_USING_TERMINAL
407 #define LWP_PTY_MAX_PARIS_LIMIT 64
408 
409 /* Using USB legacy version */
410 
411 #define RT_USING_USB
412 #define RT_USING_USB_DEVICE
413 #define RT_USBD_THREAD_STACK_SZ 4096
414 #define USB_VENDOR_ID 0x0FFE
415 #define USB_PRODUCT_ID 0x0001
416 #define _RT_USB_DEVICE_WINUSB
417 #define RT_USB_DEVICE_WINUSB
418 #define RT_WINUSB_GUID "{6860DC3C-C05F-4807-8807-1CA861CC1D66}"
419 /* end of Using USB legacy version */
420 /* end of RT-Thread Components */
421 
422 /* RT-Thread Utestcases */
423 
424 /* end of RT-Thread Utestcases */
425 
426 /* RT-Thread online packages */
427 
428 /* IoT - internet of things */
429 
430 
431 /* Wi-Fi */
432 
433 /* Marvell WiFi */
434 
435 /* end of Marvell WiFi */
436 
437 /* Wiced WiFi */
438 
439 /* end of Wiced WiFi */
440 #define PKG_USING_RW007
441 #define PKG_USING_RW007_LATEST_VERSION
442 #define RW007_NOT_USE_EXAMPLE_DRIVERS
443 #define RW007_SPI_MAX_HZ 30000000
444 
445 /* CYW43012 WiFi */
446 
447 /* end of CYW43012 WiFi */
448 
449 /* BL808 WiFi */
450 
451 /* end of BL808 WiFi */
452 
453 /* CYW43439 WiFi */
454 
455 /* end of CYW43439 WiFi */
456 /* end of Wi-Fi */
457 
458 /* IoT Cloud */
459 
460 /* end of IoT Cloud */
461 /* end of IoT - internet of things */
462 
463 /* security packages */
464 
465 /* end of security packages */
466 
467 /* language packages */
468 
469 /* JSON: JavaScript Object Notation, a lightweight data-interchange format */
470 
471 /* end of JSON: JavaScript Object Notation, a lightweight data-interchange format */
472 
473 /* XML: Extensible Markup Language */
474 
475 /* end of XML: Extensible Markup Language */
476 /* end of language packages */
477 
478 /* multimedia packages */
479 
480 /* LVGL: powerful and easy-to-use embedded GUI library */
481 
482 /* end of LVGL: powerful and easy-to-use embedded GUI library */
483 
484 /* u8g2: a monochrome graphic library */
485 
486 /* end of u8g2: a monochrome graphic library */
487 /* end of multimedia packages */
488 
489 /* tools packages */
490 
491 /* end of tools packages */
492 
493 /* system packages */
494 
495 /* enhanced kernel services */
496 
497 /* end of enhanced kernel services */
498 
499 /* acceleration: Assembly language or algorithmic acceleration packages */
500 
501 /* end of acceleration: Assembly language or algorithmic acceleration packages */
502 
503 /* CMSIS: ARM Cortex-M Microcontroller Software Interface Standard */
504 
505 /* end of CMSIS: ARM Cortex-M Microcontroller Software Interface Standard */
506 
507 /* Micrium: Micrium software products porting for RT-Thread */
508 
509 /* end of Micrium: Micrium software products porting for RT-Thread */
510 /* end of system packages */
511 
512 /* peripheral libraries and drivers */
513 
514 /* HAL & SDK Drivers */
515 
516 /* STM32 HAL & SDK Drivers */
517 
518 /* end of STM32 HAL & SDK Drivers */
519 
520 /* Infineon HAL Packages */
521 
522 /* end of Infineon HAL Packages */
523 
524 /* Kendryte SDK */
525 
526 /* end of Kendryte SDK */
527 
528 /* WCH HAL & SDK Drivers */
529 
530 /* end of WCH HAL & SDK Drivers */
531 
532 /* AT32 HAL & SDK Drivers */
533 
534 /* end of AT32 HAL & SDK Drivers */
535 
536 /* HC32 DDL Drivers */
537 
538 /* end of HC32 DDL Drivers */
539 
540 /* NXP HAL & SDK Drivers */
541 
542 #define PKG_USING_NXP_IMX6UL_DRIVER
543 #define PKG_USING_NXP_IMX6UL_DRIVER_LATEST_VERSION
544 /* end of NXP HAL & SDK Drivers */
545 /* end of HAL & SDK Drivers */
546 
547 /* sensors drivers */
548 
549 /* end of sensors drivers */
550 
551 /* touch drivers */
552 
553 /* end of touch drivers */
554 /* end of peripheral libraries and drivers */
555 
556 /* AI packages */
557 
558 /* end of AI packages */
559 
560 /* Signal Processing and Control Algorithm Packages */
561 
562 /* end of Signal Processing and Control Algorithm Packages */
563 
564 /* miscellaneous packages */
565 
566 /* project laboratory */
567 
568 /* end of project laboratory */
569 
570 /* samples: kernel and components samples */
571 
572 /* end of samples: kernel and components samples */
573 
574 /* entertainment: terminal games and other interesting software packages */
575 
576 /* end of entertainment: terminal games and other interesting software packages */
577 /* end of miscellaneous packages */
578 
579 /* Arduino libraries */
580 
581 
582 /* Projects and Demos */
583 
584 /* end of Projects and Demos */
585 
586 /* Sensors */
587 
588 /* end of Sensors */
589 
590 /* Display */
591 
592 /* end of Display */
593 
594 /* Timing */
595 
596 /* end of Timing */
597 
598 /* Data Processing */
599 
600 /* end of Data Processing */
601 
602 /* Data Storage */
603 
604 /* Communication */
605 
606 /* end of Communication */
607 
608 /* Device Control */
609 
610 /* end of Device Control */
611 
612 /* Other */
613 
614 /* end of Other */
615 
616 /* Signal IO */
617 
618 /* end of Signal IO */
619 
620 /* Uncategorized */
621 
622 /* end of Arduino libraries */
623 /* end of RT-Thread online packages */
624 #define SOC_IMX6ULL
625 #define CPU_MCIMX6Y2CVM05
626 #define FSL_SDK_ENABLE_DRIVER_CACHE_CONTROL 1
627 #define FSL_SDK_DISABLE_DRIVER_CLOCK_CONTROL 1
628 
629 /* Platform Driver Configuration */
630 
631 /* Select UART Driver */
632 
633 #define BSP_USING_UART1
634 /* end of Select UART Driver */
635 
636 /* Select SPI Driver */
637 
638 #define BSP_USING_SPI
639 #define BSP_USING_SPI1
640 #define BSP_USING_SPI2
641 #define BSP_USING_SPI3
642 #define BSP_USING_SPI4
643 /* end of Select SPI Driver */
644 
645 /* Select I2C Driver */
646 
647 #define BSP_USING_I2C
648 #define BSP_USING_I2C3
649 #define I2C3_BAUD_RATE 400000
650 #define BSP_USING_I2C4
651 #define I2C4_BAUD_RATE 100000
652 /* end of Select I2C Driver */
653 
654 /* Select LCD Driver */
655 
656 #define BSP_USING_LCD
657 #define BSP_LCD_WIDTH 480
658 #define BSP_LCD_HEIGHT 272
659 #define BSP_LCD_VSW 2
660 #define BSP_LCD_VBP 23
661 #define BSP_LCD_VFP 22
662 #define BSP_LCD_HSW 2
663 #define BSP_LCD_HBP 46
664 #define BSP_LCD_HFP 210
665 #define BSP_LCD_PLL_DIV 8
666 /* end of Select LCD Driver */
667 
668 /* Select SDHC Driver */
669 
670 #define RT_USING_SDIO1
671 #define RT_USING_SDIO2
672 /* end of Select SDHC Driver */
673 
674 /* Select RTC Driver */
675 
676 #define BSP_USING_ONCHIP_RTC
677 /* end of Select RTC Driver */
678 
679 /* Select PWM Driver */
680 
681 #define BSP_USING_PWM1
682 /* end of Select PWM Driver */
683 
684 /* Select ADC Driver */
685 
686 /* end of Select ADC Driver */
687 
688 /* Select WDT Driver */
689 
690 /* end of Select WDT Driver */
691 
692 /* Select ENET Driver */
693 
694 #define RT_USING_ENET1
695 #define RT_USING_ENET2
696 /* end of Select ENET Driver */
697 
698 /* Select Wifi Driver */
699 
700 #define RT_USING_WIFI_RW007
701 #define RW007_DAFAULT_SSID "rt-thread"
702 #define RW007_DAFAULT_PASSWARD "12345678"
703 /* end of Select Wifi Driver */
704 
705 /* Select USB Driver */
706 
707 #define BSP_USING_USB_DEVICE
708 /* end of Select USB Driver */
709 /* end of Platform Driver Configuration */
710 
711 #endif
712