rtconfig.h 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681
  1. #ifndef RT_CONFIG_H__
  2. #define RT_CONFIG_H__
  3. /* RT-Thread Kernel */
  4. /* klibc options */
  5. /* rt_vsnprintf options */
  6. #define RT_KLIBC_USING_VSNPRINTF_LONGLONG
  7. #define RT_KLIBC_USING_VSNPRINTF_STANDARD
  8. #define RT_KLIBC_USING_VSNPRINTF_DECIMAL_SPECIFIERS
  9. #define RT_KLIBC_USING_VSNPRINTF_EXPONENTIAL_SPECIFIERS
  10. #define RT_KLIBC_USING_VSNPRINTF_WRITEBACK_SPECIFIER
  11. #define RT_KLIBC_USING_VSNPRINTF_CHECK_NUL_IN_FORMAT_SPECIFIER
  12. #define RT_KLIBC_USING_VSNPRINTF_INTEGER_BUFFER_SIZE 32
  13. #define RT_KLIBC_USING_VSNPRINTF_DECIMAL_BUFFER_SIZE 32
  14. #define RT_KLIBC_USING_VSNPRINTF_FLOAT_PRECISION 6
  15. #define RT_KLIBC_USING_VSNPRINTF_MAX_INTEGRAL_DIGITS_FOR_DECIMAL 9
  16. #define RT_KLIBC_USING_VSNPRINTF_LOG10_TAYLOR_TERMS 4
  17. /* end of rt_vsnprintf options */
  18. /* rt_vsscanf options */
  19. /* end of rt_vsscanf options */
  20. /* rt_memset options */
  21. /* end of rt_memset options */
  22. /* rt_memcpy options */
  23. /* end of rt_memcpy options */
  24. /* rt_memmove options */
  25. /* end of rt_memmove options */
  26. /* rt_memcmp options */
  27. /* end of rt_memcmp options */
  28. /* rt_strstr options */
  29. /* end of rt_strstr options */
  30. /* rt_strcasecmp options */
  31. /* end of rt_strcasecmp options */
  32. /* rt_strncpy options */
  33. /* end of rt_strncpy options */
  34. /* rt_strcpy options */
  35. /* end of rt_strcpy options */
  36. /* rt_strncmp options */
  37. /* end of rt_strncmp options */
  38. /* rt_strcmp options */
  39. /* end of rt_strcmp options */
  40. /* rt_strlen options */
  41. /* end of rt_strlen options */
  42. /* rt_strnlen options */
  43. /* end of rt_strnlen options */
  44. /* end of klibc options */
  45. #define RT_NAME_MAX 12
  46. #define RT_USING_SMART
  47. #define RT_USING_SMP
  48. #define RT_CPUS_NR 4
  49. #define RT_ALIGN_SIZE 8
  50. #define RT_THREAD_PRIORITY_32
  51. #define RT_THREAD_PRIORITY_MAX 32
  52. #define RT_TICK_PER_SECOND 1000
  53. #define RT_USING_HOOK
  54. #define RT_HOOK_USING_FUNC_PTR
  55. #define RT_USING_HOOKLIST
  56. #define RT_USING_IDLE_HOOK
  57. #define RT_IDLE_HOOK_LIST_SIZE 4
  58. #define IDLE_THREAD_STACK_SIZE 16384
  59. #define SYSTEM_THREAD_STACK_SIZE 16384
  60. #define RT_USING_TIMER_SOFT
  61. #define RT_TIMER_THREAD_PRIO 4
  62. #define RT_TIMER_THREAD_STACK_SIZE 32768
  63. #define RT_USING_TIMER_ALL_SOFT
  64. #define RT_USING_CPU_USAGE_TRACER
  65. /* kservice options */
  66. /* end of kservice options */
  67. #define RT_USING_DEBUG
  68. #define RT_DEBUGING_COLOR
  69. /* Inter-Thread communication */
  70. #define RT_USING_SEMAPHORE
  71. #define RT_USING_MUTEX
  72. #define RT_USING_EVENT
  73. #define RT_USING_MAILBOX
  74. #define RT_USING_MESSAGEQUEUE
  75. #define RT_USING_MESSAGEQUEUE_PRIORITY
  76. /* end of Inter-Thread communication */
  77. /* Memory Management */
  78. #define RT_USING_SLAB
  79. #define RT_USING_MEMHEAP
  80. #define RT_MEMHEAP_FAST_MODE
  81. #define RT_USING_MEMHEAP_AS_HEAP
  82. #define RT_USING_MEMHEAP_AUTO_BINDING
  83. #define RT_USING_HEAP
  84. /* end of Memory Management */
  85. #define RT_USING_DEVICE
  86. #define RT_USING_DEVICE_OPS
  87. #define RT_USING_THREADSAFE_PRINTF
  88. #define RT_USING_CONSOLE
  89. #define RT_CONSOLEBUF_SIZE 1024
  90. #define RT_CONSOLE_DEVICE_NAME "uart2"
  91. #define RT_VER_NUM 0x50300
  92. #define RT_USING_STDC_ATOMIC
  93. #define RT_BACKTRACE_LEVEL_MAX_NR 32
  94. /* end of RT-Thread Kernel */
  95. /* AArch64 Architecture Configuration */
  96. #define ARCH_TEXT_OFFSET 0x00480000
  97. #define ARCH_RAM_OFFSET 0x200000
  98. #define ARCH_SECONDARY_CPU_STACK_SIZE 16384
  99. #define ARCH_HAVE_EFFICIENT_UNALIGNED_ACCESS
  100. #define ARCH_USING_GENERIC_CPUID
  101. #define ARCH_HEAP_SIZE 0x4000000
  102. #define ARCH_INIT_PAGE_SIZE 0x200000
  103. /* end of AArch64 Architecture Configuration */
  104. #define ARCH_CPU_64BIT
  105. #define RT_USING_CACHE
  106. #define RT_USING_CPU_FFS
  107. #define ARCH_MM_MMU
  108. #define ARCH_ARM
  109. #define ARCH_ARM_MMU
  110. #define KERNEL_VADDR_START 0xffff000000000000
  111. #define ARCH_ARMV8
  112. #define ARCH_USING_ASID
  113. #define ARCH_USING_HW_THREAD_SELF
  114. #define ARCH_USING_IRQ_CTX_LIST
  115. /* RT-Thread Components */
  116. #define RT_USING_COMPONENTS_INIT
  117. #define RT_USING_USER_MAIN
  118. #define RT_MAIN_THREAD_STACK_SIZE 16384
  119. #define RT_MAIN_THREAD_PRIORITY 10
  120. #define RT_USING_MSH
  121. #define RT_USING_FINSH
  122. #define FINSH_USING_MSH
  123. #define FINSH_THREAD_NAME "tshell"
  124. #define FINSH_THREAD_PRIORITY 20
  125. #define FINSH_THREAD_STACK_SIZE 16384
  126. #define FINSH_USING_HISTORY
  127. #define FINSH_HISTORY_LINES 5
  128. #define FINSH_USING_SYMTAB
  129. #define FINSH_CMD_SIZE 80
  130. #define MSH_USING_BUILT_IN_COMMANDS
  131. #define FINSH_USING_DESCRIPTION
  132. #define FINSH_ARG_MAX 10
  133. #define FINSH_USING_OPTION_COMPLETION
  134. /* DFS: device virtual file system */
  135. #define RT_USING_DFS
  136. #define DFS_USING_POSIX
  137. #define DFS_USING_WORKDIR
  138. #define DFS_FD_MAX 512
  139. #define RT_USING_DFS_V2
  140. #define RT_USING_DFS_DEVFS
  141. #define RT_USING_DFS_PTYFS
  142. #define RT_USING_DFS_PROCFS
  143. #define RT_USING_DFS_CROMFS
  144. #define RT_USING_DFS_TMPFS
  145. #define RT_USING_DFS_MQUEUE
  146. #define RT_USING_PAGECACHE
  147. /* page cache config */
  148. #define RT_PAGECACHE_COUNT 128
  149. #define RT_PAGECACHE_ASPACE_COUNT 32
  150. #define RT_PAGECACHE_PRELOAD 4
  151. #define RT_PAGECACHE_HASH_NR 180
  152. #define RT_PAGECACHE_GC_WORK_LEVEL 90
  153. #define RT_PAGECACHE_GC_STOP_LEVEL 70
  154. /* end of page cache config */
  155. /* end of DFS: device virtual file system */
  156. /* Device Drivers */
  157. #define RT_USING_DM
  158. #define RT_USING_DEV_BUS
  159. #define RT_USING_DEVICE_IPC
  160. #define RT_UNAMED_PIPE_NUMBER 64
  161. #define RT_USING_SYSTEM_WORKQUEUE
  162. #define RT_SYSTEM_WORKQUEUE_STACKSIZE 16384
  163. #define RT_SYSTEM_WORKQUEUE_PRIORITY 23
  164. #define RT_USING_SERIAL
  165. #define RT_USING_SERIAL_V1
  166. #define RT_SERIAL_RB_BUFSZ 64
  167. #define RT_USING_SERIAL_BYPASS
  168. #define RT_SERIAL_8250
  169. #define RT_USING_NULL
  170. #define RT_USING_ZERO
  171. #define RT_USING_RANDOM
  172. #define RT_USING_RTC
  173. #define RT_USING_SOFT_RTC
  174. #define RT_USING_SDIO
  175. #define RT_SDIO_STACK_SIZE 16384
  176. #define RT_SDIO_THREAD_PRIORITY 15
  177. #define RT_MMCSD_STACK_SIZE 16384
  178. #define RT_MMCSD_THREAD_PRIORITY 22
  179. #define RT_MMCSD_MAX_PARTITION 16
  180. #define RT_USING_BLK
  181. /* Partition Types */
  182. #define RT_BLK_PARTITION_DFS
  183. #define RT_BLK_PARTITION_EFI
  184. /* end of Partition Types */
  185. #define RT_USING_RESET
  186. /* Power Management (PM) Domains device drivers */
  187. /* end of Power Management (PM) Domains device drivers */
  188. #define RT_USING_MFD
  189. #define RT_MFD_SYSCON
  190. #define RT_USING_OFW
  191. #define RT_FDT_EARLYCON_MSG_SIZE 128
  192. #define RT_USING_OFW_BUS_RANGES_NUMBER 8
  193. #define RT_USING_PIC
  194. #define MAX_HANDLERS 1024
  195. #define RT_PIC_ARM_GIC_V3
  196. #define RT_USING_PIN
  197. #define RT_PIN_ROCKCHIP
  198. #define RT_USING_PINCTRL
  199. #define RT_PINCTRL_ROCKCHIP
  200. #define RT_USING_KTIME
  201. #define RT_USING_CLK
  202. #define RT_CLK_ROCKCHIP_LINK
  203. #define RT_CLK_ROCKCHIP
  204. #define RT_CLK_ROCKCHIP_RK3568
  205. #define RT_CLK_ROCKCHIP_RK3588
  206. #define RT_USING_HWTIMER
  207. #define RT_HWTIMER_ARM_ARCH
  208. #define RT_HWTIMER_ROCKCHIP
  209. /* end of Device Drivers */
  210. /* C/C++ and POSIX layer */
  211. /* ISO-ANSI C layer */
  212. /* Timezone and Daylight Saving Time */
  213. #define RT_LIBC_USING_LIGHT_TZ_DST
  214. #define RT_LIBC_TZ_DEFAULT_HOUR 8
  215. #define RT_LIBC_TZ_DEFAULT_MIN 0
  216. #define RT_LIBC_TZ_DEFAULT_SEC 0
  217. /* end of Timezone and Daylight Saving Time */
  218. /* end of ISO-ANSI C layer */
  219. /* POSIX (Portable Operating System Interface) layer */
  220. #define RT_USING_POSIX_FS
  221. #define RT_USING_POSIX_DEVIO
  222. #define RT_USING_POSIX_STDIO
  223. #define RT_USING_POSIX_POLL
  224. #define RT_USING_POSIX_SELECT
  225. #define RT_USING_POSIX_EVENTFD
  226. #define RT_USING_POSIX_EPOLL
  227. #define RT_USING_POSIX_SIGNALFD
  228. #define RT_SIGNALFD_MAX_NUM 10
  229. #define RT_USING_POSIX_TIMERFD
  230. #define RT_USING_POSIX_SOCKET
  231. #define RT_USING_POSIX_TERMIOS
  232. #define RT_USING_POSIX_MMAN
  233. #define RT_USING_POSIX_DELAY
  234. #define RT_USING_POSIX_CLOCK
  235. #define RT_USING_POSIX_TIMER
  236. /* Interprocess Communication (IPC) */
  237. #define RT_USING_POSIX_PIPE
  238. #define RT_USING_POSIX_PIPE_SIZE 2048
  239. #define RT_USING_POSIX_MESSAGE_QUEUE
  240. /* Socket is in the 'Network' category */
  241. /* end of Interprocess Communication (IPC) */
  242. /* end of POSIX (Portable Operating System Interface) layer */
  243. /* end of C/C++ and POSIX layer */
  244. /* Network */
  245. #define RT_USING_SAL
  246. #define SAL_INTERNET_CHECK
  247. #define SOCKET_TABLE_STEP_LEN 4
  248. /* Docking with protocol stacks */
  249. #define SAL_USING_LWIP
  250. /* end of Docking with protocol stacks */
  251. #define SAL_USING_POSIX
  252. #define RT_USING_NETDEV
  253. #define NETDEV_USING_IFCONFIG
  254. #define NETDEV_USING_PING
  255. #define NETDEV_USING_NETSTAT
  256. #define NETDEV_USING_AUTO_DEFAULT
  257. #define NETDEV_IPV4 1
  258. #define NETDEV_IPV6 0
  259. #define RT_USING_LWIP
  260. #define RT_USING_LWIP212
  261. #define RT_USING_LWIP_VER_NUM 0x20102
  262. #define RT_LWIP_MEM_ALIGNMENT 8
  263. #define RT_LWIP_IGMP
  264. #define RT_LWIP_ICMP
  265. #define RT_LWIP_DNS
  266. #define RT_LWIP_DHCP
  267. #define IP_SOF_BROADCAST 1
  268. #define IP_SOF_BROADCAST_RECV 1
  269. /* Static IPv4 Address */
  270. #define RT_LWIP_IPADDR "192.168.1.30"
  271. #define RT_LWIP_GWADDR "192.168.1.1"
  272. #define RT_LWIP_MSKADDR "255.255.255.0"
  273. /* end of Static IPv4 Address */
  274. #define RT_LWIP_UDP
  275. #define RT_LWIP_TCP
  276. #define RT_LWIP_RAW
  277. #define RT_MEMP_NUM_NETCONN 64
  278. #define RT_LWIP_PBUF_NUM 320
  279. #define RT_LWIP_RAW_PCB_NUM 32
  280. #define RT_LWIP_UDP_PCB_NUM 32
  281. #define RT_LWIP_TCP_PCB_NUM 64
  282. #define RT_LWIP_TCP_SEG_NUM 480
  283. #define RT_LWIP_TCP_SND_BUF 65535
  284. #define RT_LWIP_TCP_WND 49512
  285. #define RT_LWIP_TCPTHREAD_PRIORITY 8
  286. #define RT_LWIP_TCPTHREAD_MBOX_SIZE 256
  287. #define RT_LWIP_TCPTHREAD_STACKSIZE 65536
  288. #define LWIP_NO_TX_THREAD
  289. #define RT_LWIP_ETHTHREAD_PRIORITY 9
  290. #define RT_LWIP_ETHTHREAD_STACKSIZE 16384
  291. #define RT_LWIP_ETHTHREAD_MBOX_SIZE 256
  292. #define LWIP_NETIF_STATUS_CALLBACK 1
  293. #define LWIP_NETIF_LINK_CALLBACK 1
  294. #define RT_LWIP_NETIF_NAMESIZE 6
  295. #define SO_REUSE 1
  296. #define LWIP_SO_RCVTIMEO 1
  297. #define LWIP_SO_SNDTIMEO 1
  298. #define LWIP_SO_RCVBUF 1
  299. #define LWIP_SO_LINGER 0
  300. #define RT_LWIP_NETIF_LOOPBACK
  301. #define LWIP_NETIF_LOOPBACK 1
  302. #define RT_LWIP_USING_HW_CHECKSUM
  303. #define RT_LWIP_USING_PING
  304. /* end of Network */
  305. /* Memory protection */
  306. /* end of Memory protection */
  307. /* Utilities */
  308. #define RT_USING_UTEST
  309. #define UTEST_THR_STACK_SIZE 32768
  310. #define UTEST_THR_PRIORITY 20
  311. #define RT_UTEST_MAX_OPTIONS 64
  312. #define RT_USING_RESOURCE_ID
  313. #define RT_USING_ADT
  314. #define RT_USING_ADT_AVL
  315. #define RT_USING_ADT_BITMAP
  316. #define RT_USING_ADT_HASHMAP
  317. #define RT_USING_ADT_REF
  318. /* end of Utilities */
  319. /* Memory management */
  320. #define RT_PAGE_AFFINITY_BLOCK_SIZE 0x1000
  321. #define RT_PAGE_MAX_ORDER 11
  322. #define RT_USING_MEMBLOCK
  323. #define RT_INIT_MEMORY_REGIONS 128
  324. /* Debugging */
  325. /* end of Debugging */
  326. /* end of Memory management */
  327. #define RT_USING_LWP
  328. #define LWP_DEBUG
  329. #define LWP_DEBUG_INIT
  330. #define LWP_USING_RUNTIME
  331. #define RT_LWP_MAX_NR 128
  332. #define LWP_TASK_STACK_SIZE 32768
  333. #define RT_CH_MSG_MAX_NR 1024
  334. #define LWP_TID_MAX_NR 128
  335. #define RT_LWP_SHM_MAX_NR 64
  336. #define RT_USING_LDSO
  337. #define LWP_USING_TERMINAL
  338. #define LWP_PTY_MAX_PARIS_LIMIT 64
  339. #define RT_USING_VDSO
  340. /* Using USB legacy version */
  341. /* end of Using USB legacy version */
  342. /* end of RT-Thread Components */
  343. /* RT-Thread Utestcases */
  344. #define RT_USING_UTESTCASES
  345. /* Kernel Core */
  346. /* SMP Test */
  347. /* end of SMP Test */
  348. /* end of Kernel Core */
  349. /* Kernel Components */
  350. /* Drivers */
  351. /* IPC Test */
  352. /* end of IPC Test */
  353. /* Serial Test */
  354. /* end of Serial Test */
  355. /* SMP-Call Test */
  356. #define RT_UTEST_SMP_CALL_FUNC
  357. /* end of SMP-Call Test */
  358. /* end of Drivers */
  359. /* File System */
  360. /* end of File System */
  361. /* CPP11 */
  362. /* end of CPP11 */
  363. /* Network */
  364. /* end of Network */
  365. /* Utest Framework */
  366. /* end of Utest Framework */
  367. /* end of Kernel Components */
  368. /* Memory Management Subsytem Testcase */
  369. /* end of Memory Management Subsytem Testcase */
  370. /* Tmpfs Testcase */
  371. /* end of Tmpfs Testcase */
  372. /* end of RT-Thread Utestcases */
  373. /* RT-Thread online packages */
  374. /* IoT - internet of things */
  375. /* Wi-Fi */
  376. /* Marvell WiFi */
  377. /* end of Marvell WiFi */
  378. /* Wiced WiFi */
  379. /* end of Wiced WiFi */
  380. /* CYW43012 WiFi */
  381. /* end of CYW43012 WiFi */
  382. /* BL808 WiFi */
  383. /* end of BL808 WiFi */
  384. /* CYW43439 WiFi */
  385. /* end of CYW43439 WiFi */
  386. /* end of Wi-Fi */
  387. /* IoT Cloud */
  388. /* end of IoT Cloud */
  389. /* end of IoT - internet of things */
  390. /* security packages */
  391. /* end of security packages */
  392. /* language packages */
  393. /* JSON: JavaScript Object Notation, a lightweight data-interchange format */
  394. /* end of JSON: JavaScript Object Notation, a lightweight data-interchange format */
  395. /* XML: Extensible Markup Language */
  396. /* end of XML: Extensible Markup Language */
  397. /* end of language packages */
  398. /* multimedia packages */
  399. /* LVGL: powerful and easy-to-use embedded GUI library */
  400. /* end of LVGL: powerful and easy-to-use embedded GUI library */
  401. /* u8g2: a monochrome graphic library */
  402. /* end of u8g2: a monochrome graphic library */
  403. /* end of multimedia packages */
  404. /* tools packages */
  405. /* end of tools packages */
  406. /* system packages */
  407. /* enhanced kernel services */
  408. /* end of enhanced kernel services */
  409. /* acceleration: Assembly language or algorithmic acceleration packages */
  410. /* end of acceleration: Assembly language or algorithmic acceleration packages */
  411. /* CMSIS: ARM Cortex-M Microcontroller Software Interface Standard */
  412. /* end of CMSIS: ARM Cortex-M Microcontroller Software Interface Standard */
  413. /* Micrium: Micrium software products porting for RT-Thread */
  414. /* end of Micrium: Micrium software products porting for RT-Thread */
  415. /* end of system packages */
  416. /* peripheral libraries and drivers */
  417. /* HAL & SDK Drivers */
  418. /* STM32 HAL & SDK Drivers */
  419. /* end of STM32 HAL & SDK Drivers */
  420. /* Infineon HAL Packages */
  421. /* end of Infineon HAL Packages */
  422. /* Kendryte SDK */
  423. /* end of Kendryte SDK */
  424. /* WCH HAL & SDK Drivers */
  425. /* end of WCH HAL & SDK Drivers */
  426. /* AT32 HAL & SDK Drivers */
  427. /* end of AT32 HAL & SDK Drivers */
  428. /* HC32 DDL Drivers */
  429. /* end of HC32 DDL Drivers */
  430. /* NXP HAL & SDK Drivers */
  431. /* end of NXP HAL & SDK Drivers */
  432. /* NUVOTON Drivers */
  433. /* end of NUVOTON Drivers */
  434. /* GD32 Drivers */
  435. /* end of GD32 Drivers */
  436. /* end of HAL & SDK Drivers */
  437. /* sensors drivers */
  438. /* end of sensors drivers */
  439. /* touch drivers */
  440. /* end of touch drivers */
  441. /* end of peripheral libraries and drivers */
  442. /* AI packages */
  443. /* end of AI packages */
  444. /* Signal Processing and Control Algorithm Packages */
  445. /* end of Signal Processing and Control Algorithm Packages */
  446. /* miscellaneous packages */
  447. /* project laboratory */
  448. /* end of project laboratory */
  449. /* samples: kernel and components samples */
  450. /* end of samples: kernel and components samples */
  451. /* entertainment: terminal games and other interesting software packages */
  452. /* end of entertainment: terminal games and other interesting software packages */
  453. #define PKG_USING_ZLIB
  454. #define PKG_USING_ZLIB_LATEST_VERSION
  455. /* end of miscellaneous packages */
  456. /* Arduino libraries */
  457. /* Projects and Demos */
  458. /* end of Projects and Demos */
  459. /* Sensors */
  460. /* end of Sensors */
  461. /* Display */
  462. /* end of Display */
  463. /* Timing */
  464. /* end of Timing */
  465. /* Data Processing */
  466. /* end of Data Processing */
  467. /* Data Storage */
  468. /* Communication */
  469. /* end of Communication */
  470. /* Device Control */
  471. /* end of Device Control */
  472. /* Other */
  473. /* end of Other */
  474. /* Signal IO */
  475. /* end of Signal IO */
  476. /* Uncategorized */
  477. /* end of Arduino libraries */
  478. /* end of RT-Thread online packages */
  479. #define SOC_RK3500
  480. #endif