rtconfig.h 17 KB

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