2021-05-18 09:57:25 +08:00
|
|
|
#ifndef RT_CONFIG_H__
|
|
|
|
#define RT_CONFIG_H__
|
|
|
|
|
|
|
|
/* RT-Thread Kernel */
|
|
|
|
|
2023-01-09 10:08:55 +08:00
|
|
|
#define RT_NAME_MAX 24
|
2023-10-21 20:14:45 +08:00
|
|
|
#define RT_CPUS_NR 1
|
2021-05-18 09:57:25 +08:00
|
|
|
#define RT_ALIGN_SIZE 8
|
|
|
|
#define RT_THREAD_PRIORITY_32
|
|
|
|
#define RT_THREAD_PRIORITY_MAX 32
|
|
|
|
#define RT_TICK_PER_SECOND 100
|
|
|
|
#define RT_USING_HOOK
|
2022-01-08 23:29:41 +08:00
|
|
|
#define RT_HOOK_USING_FUNC_PTR
|
2021-05-18 09:57:25 +08:00
|
|
|
#define RT_USING_IDLE_HOOK
|
|
|
|
#define RT_IDLE_HOOK_LIST_SIZE 4
|
|
|
|
#define IDLE_THREAD_STACK_SIZE 16384
|
|
|
|
#define RT_USING_TIMER_SOFT
|
|
|
|
#define RT_TIMER_THREAD_PRIO 4
|
|
|
|
#define RT_TIMER_THREAD_STACK_SIZE 16384
|
2024-06-18 11:15:59 +08:00
|
|
|
#define RT_USING_CPU_USAGE_TRACER
|
2021-05-18 09:57:25 +08:00
|
|
|
|
|
|
|
/* kservice optimization */
|
|
|
|
|
2024-06-18 11:15:59 +08:00
|
|
|
/* end of kservice optimization */
|
|
|
|
|
|
|
|
/* klibc optimization */
|
|
|
|
|
|
|
|
#define RT_KLIBC_USING_PRINTF_LONGLONG
|
|
|
|
/* end of klibc optimization */
|
2023-10-08 11:01:28 +08:00
|
|
|
#define RT_USING_DEBUG
|
2024-06-18 11:15:59 +08:00
|
|
|
#define RT_DEBUGING_ASSERT
|
2023-10-08 11:01:28 +08:00
|
|
|
#define RT_DEBUGING_COLOR
|
|
|
|
#define RT_DEBUGING_CONTEXT
|
2024-06-18 11:15:59 +08:00
|
|
|
#define RT_USING_OVERFLOW_CHECK
|
2021-05-18 09:57:25 +08:00
|
|
|
|
|
|
|
/* Inter-Thread communication */
|
|
|
|
|
|
|
|
#define RT_USING_SEMAPHORE
|
|
|
|
#define RT_USING_MUTEX
|
|
|
|
#define RT_USING_EVENT
|
|
|
|
#define RT_USING_MAILBOX
|
|
|
|
#define RT_USING_MESSAGEQUEUE
|
2022-12-03 12:07:44 +08:00
|
|
|
#define RT_USING_SIGNALS
|
2024-06-18 11:15:59 +08:00
|
|
|
/* end of Inter-Thread communication */
|
2021-05-18 09:57:25 +08:00
|
|
|
|
|
|
|
/* Memory Management */
|
|
|
|
|
2023-01-09 10:08:55 +08:00
|
|
|
#define RT_PAGE_MAX_ORDER 11
|
2021-05-18 09:57:25 +08:00
|
|
|
#define RT_USING_MEMPOOL
|
2024-08-28 20:52:12 +08:00
|
|
|
#define RT_USING_SLAB
|
|
|
|
#define RT_USING_SLAB_AS_HEAP
|
2021-05-18 09:57:25 +08:00
|
|
|
#define RT_USING_MEMTRACE
|
|
|
|
#define RT_USING_HEAP
|
2024-06-18 11:15:59 +08:00
|
|
|
/* end of Memory Management */
|
2021-05-18 09:57:25 +08:00
|
|
|
#define RT_USING_DEVICE
|
2022-12-03 12:07:44 +08:00
|
|
|
#define RT_USING_DEVICE_OPS
|
2024-06-18 11:15:59 +08:00
|
|
|
#define RT_USING_SCHED_THREAD_CTX
|
2021-05-18 09:57:25 +08:00
|
|
|
#define RT_USING_CONSOLE
|
|
|
|
#define RT_CONSOLEBUF_SIZE 256
|
2022-12-03 12:07:44 +08:00
|
|
|
#define RT_CONSOLE_DEVICE_NAME "uart0"
|
2024-06-18 11:15:59 +08:00
|
|
|
#define RT_VER_NUM 0x50200
|
|
|
|
#define RT_USING_STDC_ATOMIC
|
2023-10-21 20:14:45 +08:00
|
|
|
#define RT_BACKTRACE_LEVEL_MAX_NR 32
|
2024-06-18 11:15:59 +08:00
|
|
|
/* end of RT-Thread Kernel */
|
2021-05-18 09:57:25 +08:00
|
|
|
#define ARCH_CPU_64BIT
|
2022-12-03 12:07:44 +08:00
|
|
|
#define RT_USING_CACHE
|
2023-03-31 16:49:48 +08:00
|
|
|
#define RT_USING_HW_ATOMIC
|
2022-12-03 12:07:44 +08:00
|
|
|
#define ARCH_MM_MMU
|
2021-05-18 09:57:25 +08:00
|
|
|
#define ARCH_RISCV
|
|
|
|
#define ARCH_RISCV64
|
2024-07-15 12:06:17 +08:00
|
|
|
#define ARCH_USING_RISCV_COMMON64
|
2024-06-18 11:15:59 +08:00
|
|
|
#define ARCH_REMAP_KERNEL
|
2021-05-18 09:57:25 +08:00
|
|
|
|
|
|
|
/* RT-Thread Components */
|
|
|
|
|
|
|
|
#define RT_USING_COMPONENTS_INIT
|
|
|
|
#define RT_USING_USER_MAIN
|
|
|
|
#define RT_MAIN_THREAD_STACK_SIZE 16384
|
|
|
|
#define RT_MAIN_THREAD_PRIORITY 10
|
2021-10-14 14:48:32 +08:00
|
|
|
#define RT_USING_MSH
|
2022-03-29 18:42:22 +08:00
|
|
|
#define RT_USING_FINSH
|
2021-10-14 14:48:32 +08:00
|
|
|
#define FINSH_USING_MSH
|
2021-05-18 09:57:25 +08:00
|
|
|
#define FINSH_THREAD_NAME "tshell"
|
2021-10-14 14:48:32 +08:00
|
|
|
#define FINSH_THREAD_PRIORITY 20
|
2022-12-03 12:07:44 +08:00
|
|
|
#define FINSH_THREAD_STACK_SIZE 16384
|
2021-05-18 09:57:25 +08:00
|
|
|
#define FINSH_USING_HISTORY
|
2022-12-03 12:07:44 +08:00
|
|
|
#define FINSH_HISTORY_LINES 10
|
2021-05-18 09:57:25 +08:00
|
|
|
#define FINSH_USING_SYMTAB
|
|
|
|
#define FINSH_CMD_SIZE 80
|
2021-10-14 14:48:32 +08:00
|
|
|
#define MSH_USING_BUILT_IN_COMMANDS
|
|
|
|
#define FINSH_USING_DESCRIPTION
|
2021-05-18 09:57:25 +08:00
|
|
|
#define FINSH_ARG_MAX 10
|
2023-10-08 11:01:28 +08:00
|
|
|
#define FINSH_USING_OPTION_COMPLETION
|
|
|
|
|
|
|
|
/* DFS: device virtual file system */
|
|
|
|
|
2021-05-18 09:57:25 +08:00
|
|
|
#define RT_USING_DFS
|
2021-12-02 11:02:36 +08:00
|
|
|
#define DFS_USING_POSIX
|
2021-05-18 09:57:25 +08:00
|
|
|
#define DFS_USING_WORKDIR
|
2023-07-17 20:11:58 +08:00
|
|
|
#define DFS_FD_MAX 32
|
2024-06-18 11:15:59 +08:00
|
|
|
#define RT_USING_DFS_V2
|
2022-12-03 12:07:44 +08:00
|
|
|
#define RT_USING_DFS_ELMFAT
|
|
|
|
|
|
|
|
/* elm-chan's FatFs, Generic FAT Filesystem Module */
|
|
|
|
|
|
|
|
#define RT_DFS_ELM_CODE_PAGE 437
|
|
|
|
#define RT_DFS_ELM_WORD_ACCESS
|
|
|
|
#define RT_DFS_ELM_USE_LFN_3
|
|
|
|
#define RT_DFS_ELM_USE_LFN 3
|
|
|
|
#define RT_DFS_ELM_LFN_UNICODE_0
|
|
|
|
#define RT_DFS_ELM_LFN_UNICODE 0
|
|
|
|
#define RT_DFS_ELM_MAX_LFN 255
|
|
|
|
#define RT_DFS_ELM_DRIVES 2
|
|
|
|
#define RT_DFS_ELM_MAX_SECTOR_SIZE 512
|
|
|
|
#define RT_DFS_ELM_REENTRANT
|
|
|
|
#define RT_DFS_ELM_MUTEX_TIMEOUT 3000
|
2024-06-18 11:15:59 +08:00
|
|
|
/* end of elm-chan's FatFs, Generic FAT Filesystem Module */
|
2021-05-18 09:57:25 +08:00
|
|
|
#define RT_USING_DFS_DEVFS
|
|
|
|
#define RT_USING_DFS_ROMFS
|
2024-06-18 11:15:59 +08:00
|
|
|
/* end of DFS: device virtual file system */
|
2021-05-18 09:57:25 +08:00
|
|
|
|
|
|
|
/* Device Drivers */
|
|
|
|
|
|
|
|
#define RT_USING_DEVICE_IPC
|
2022-12-03 12:07:44 +08:00
|
|
|
#define RT_UNAMED_PIPE_NUMBER 64
|
|
|
|
#define RT_USING_SYSTEM_WORKQUEUE
|
|
|
|
#define RT_SYSTEM_WORKQUEUE_STACKSIZE 8192
|
|
|
|
#define RT_SYSTEM_WORKQUEUE_PRIORITY 23
|
2021-05-18 09:57:25 +08:00
|
|
|
#define RT_USING_SERIAL
|
2021-10-14 14:48:32 +08:00
|
|
|
#define RT_USING_SERIAL_V1
|
2021-05-18 09:57:25 +08:00
|
|
|
#define RT_SERIAL_USING_DMA
|
|
|
|
#define RT_SERIAL_RB_BUFSZ 64
|
2022-12-03 12:07:44 +08:00
|
|
|
#define RT_USING_CPUTIME
|
|
|
|
#define RT_USING_CPUTIME_RISCV
|
2023-07-17 20:11:58 +08:00
|
|
|
#define CPUTIME_TIMER_FREQ 10000000
|
2022-12-03 12:07:44 +08:00
|
|
|
#define RT_USING_NULL
|
|
|
|
#define RT_USING_ZERO
|
|
|
|
#define RT_USING_RANDOM
|
|
|
|
#define RT_USING_RTC
|
2023-07-17 20:11:58 +08:00
|
|
|
#define RT_USING_SOFT_RTC
|
2022-12-03 12:07:44 +08:00
|
|
|
#define RT_USING_VIRTIO
|
|
|
|
#define RT_USING_VIRTIO10
|
|
|
|
#define RT_USING_VIRTIO_BLK
|
|
|
|
#define RT_USING_VIRTIO_NET
|
2023-01-09 10:08:55 +08:00
|
|
|
#define RT_USING_VIRTIO_CONSOLE
|
|
|
|
#define RT_USING_VIRTIO_CONSOLE_PORT_MAX_NR 4
|
2024-03-21 11:05:08 +08:00
|
|
|
#define RT_USING_PIN
|
2023-10-08 11:01:28 +08:00
|
|
|
#define RT_USING_KTIME
|
2024-06-18 11:15:59 +08:00
|
|
|
/* end of Device Drivers */
|
2021-05-18 09:57:25 +08:00
|
|
|
|
2022-03-29 18:42:22 +08:00
|
|
|
/* C/C++ and POSIX layer */
|
2021-05-18 09:57:25 +08:00
|
|
|
|
2023-10-08 11:01:28 +08:00
|
|
|
/* ISO-ANSI C layer */
|
|
|
|
|
|
|
|
/* Timezone and Daylight Saving Time */
|
|
|
|
|
|
|
|
#define RT_LIBC_USING_LIGHT_TZ_DST
|
|
|
|
#define RT_LIBC_TZ_DEFAULT_HOUR 8
|
|
|
|
#define RT_LIBC_TZ_DEFAULT_MIN 0
|
|
|
|
#define RT_LIBC_TZ_DEFAULT_SEC 0
|
2024-06-18 11:15:59 +08:00
|
|
|
/* end of Timezone and Daylight Saving Time */
|
|
|
|
/* end of ISO-ANSI C layer */
|
2021-12-02 11:02:36 +08:00
|
|
|
|
|
|
|
/* POSIX (Portable Operating System Interface) layer */
|
|
|
|
|
2022-12-03 12:07:44 +08:00
|
|
|
#define RT_USING_POSIX_FS
|
|
|
|
#define RT_USING_POSIX_DEVIO
|
|
|
|
#define RT_USING_POSIX_STDIO
|
|
|
|
#define RT_USING_POSIX_POLL
|
|
|
|
#define RT_USING_POSIX_SELECT
|
|
|
|
#define RT_USING_POSIX_TERMIOS
|
|
|
|
#define RT_USING_POSIX_AIO
|
|
|
|
#define RT_USING_POSIX_DELAY
|
|
|
|
#define RT_USING_POSIX_CLOCK
|
|
|
|
#define RT_USING_POSIX_TIMER
|
2021-12-16 16:23:58 +08:00
|
|
|
|
|
|
|
/* Interprocess Communication (IPC) */
|
|
|
|
|
2022-12-03 12:07:44 +08:00
|
|
|
#define RT_USING_POSIX_PIPE
|
|
|
|
#define RT_USING_POSIX_PIPE_SIZE 512
|
2021-12-16 16:23:58 +08:00
|
|
|
|
|
|
|
/* Socket is in the 'Network' category */
|
|
|
|
|
2024-06-18 11:15:59 +08:00
|
|
|
/* end of Interprocess Communication (IPC) */
|
|
|
|
/* end of POSIX (Portable Operating System Interface) layer */
|
|
|
|
/* end of C/C++ and POSIX layer */
|
2021-05-18 09:57:25 +08:00
|
|
|
|
2022-03-29 18:42:22 +08:00
|
|
|
/* Network */
|
2021-05-18 09:57:25 +08:00
|
|
|
|
2022-12-03 12:07:44 +08:00
|
|
|
#define RT_USING_SAL
|
|
|
|
#define SAL_INTERNET_CHECK
|
|
|
|
|
|
|
|
/* Docking with protocol stacks */
|
|
|
|
|
|
|
|
#define SAL_USING_LWIP
|
2024-06-18 11:15:59 +08:00
|
|
|
/* end of Docking with protocol stacks */
|
2022-12-03 12:07:44 +08:00
|
|
|
#define SAL_USING_POSIX
|
|
|
|
#define RT_USING_NETDEV
|
|
|
|
#define NETDEV_USING_IFCONFIG
|
|
|
|
#define NETDEV_USING_PING
|
|
|
|
#define NETDEV_USING_NETSTAT
|
|
|
|
#define NETDEV_USING_AUTO_DEFAULT
|
|
|
|
#define NETDEV_IPV4 1
|
|
|
|
#define NETDEV_IPV6 0
|
|
|
|
#define RT_USING_LWIP
|
|
|
|
#define RT_USING_LWIP203
|
|
|
|
#define RT_USING_LWIP_VER_NUM 0x20003
|
|
|
|
#define RT_LWIP_MEM_ALIGNMENT 4
|
|
|
|
#define RT_LWIP_IGMP
|
|
|
|
#define RT_LWIP_ICMP
|
|
|
|
#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"
|
2024-06-18 11:15:59 +08:00
|
|
|
/* end of Static IPv4 Address */
|
2022-12-03 12:07:44 +08:00
|
|
|
#define RT_LWIP_UDP
|
|
|
|
#define RT_LWIP_TCP
|
|
|
|
#define RT_LWIP_RAW
|
|
|
|
#define RT_MEMP_NUM_NETCONN 8
|
|
|
|
#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 8192
|
|
|
|
#define RT_LWIP_ETHTHREAD_PRIORITY 12
|
|
|
|
#define RT_LWIP_ETHTHREAD_STACKSIZE 8192
|
|
|
|
#define RT_LWIP_ETHTHREAD_MBOX_SIZE 8
|
|
|
|
#define LWIP_NETIF_STATUS_CALLBACK 1
|
|
|
|
#define LWIP_NETIF_LINK_CALLBACK 1
|
2024-03-21 11:05:08 +08:00
|
|
|
#define RT_LWIP_NETIF_NAMESIZE 6
|
2022-12-03 12:07:44 +08:00
|
|
|
#define SO_REUSE 1
|
|
|
|
#define LWIP_SO_RCVTIMEO 1
|
|
|
|
#define LWIP_SO_SNDTIMEO 1
|
|
|
|
#define LWIP_SO_RCVBUF 1
|
|
|
|
#define LWIP_SO_LINGER 0
|
|
|
|
#define LWIP_NETIF_LOOPBACK 0
|
|
|
|
#define RT_LWIP_USING_PING
|
2024-06-18 11:15:59 +08:00
|
|
|
/* end of Network */
|
2021-05-18 09:57:25 +08:00
|
|
|
|
2024-03-21 11:05:08 +08:00
|
|
|
/* Memory protection */
|
|
|
|
|
2024-06-18 11:15:59 +08:00
|
|
|
/* end of Memory protection */
|
2024-03-21 11:05:08 +08:00
|
|
|
|
2021-05-18 09:57:25 +08:00
|
|
|
/* Utilities */
|
|
|
|
|
2022-12-03 12:07:44 +08:00
|
|
|
#define RT_USING_UTEST
|
|
|
|
#define UTEST_THR_STACK_SIZE 4096
|
|
|
|
#define UTEST_THR_PRIORITY 20
|
2023-10-08 11:01:28 +08:00
|
|
|
#define RT_USING_RESOURCE_ID
|
2023-02-06 01:11:04 +08:00
|
|
|
#define RT_USING_ADT
|
2023-07-05 13:50:18 +08:00
|
|
|
#define RT_USING_ADT_AVL
|
2023-10-08 11:01:28 +08:00
|
|
|
#define RT_USING_ADT_BITMAP
|
|
|
|
#define RT_USING_ADT_HASHMAP
|
|
|
|
#define RT_USING_ADT_REF
|
2024-06-18 11:15:59 +08:00
|
|
|
/* end of Utilities */
|
|
|
|
|
|
|
|
/* Using USB legacy version */
|
|
|
|
|
|
|
|
/* end of Using USB legacy version */
|
|
|
|
/* end of RT-Thread Components */
|
2021-05-18 09:57:25 +08:00
|
|
|
|
|
|
|
/* RT-Thread Utestcases */
|
|
|
|
|
2024-06-18 11:15:59 +08:00
|
|
|
/* end of RT-Thread Utestcases */
|
2021-05-18 09:57:25 +08:00
|
|
|
|
2023-01-16 08:24:03 +08:00
|
|
|
/* RT-Thread online packages */
|
|
|
|
|
|
|
|
/* IoT - internet of things */
|
|
|
|
|
|
|
|
|
|
|
|
/* Wi-Fi */
|
|
|
|
|
|
|
|
/* Marvell WiFi */
|
|
|
|
|
2024-06-18 11:15:59 +08:00
|
|
|
/* end of Marvell WiFi */
|
2023-01-16 08:24:03 +08:00
|
|
|
|
|
|
|
/* Wiced WiFi */
|
|
|
|
|
2024-06-18 11:15:59 +08:00
|
|
|
/* end of Wiced WiFi */
|
2024-07-15 12:06:17 +08:00
|
|
|
|
|
|
|
/* CYW43012 WiFi */
|
|
|
|
|
|
|
|
/* end of CYW43012 WiFi */
|
|
|
|
|
|
|
|
/* BL808 WiFi */
|
|
|
|
|
|
|
|
/* end of BL808 WiFi */
|
|
|
|
|
|
|
|
/* CYW43439 WiFi */
|
|
|
|
|
|
|
|
/* end of CYW43439 WiFi */
|
2024-06-18 11:15:59 +08:00
|
|
|
/* end of Wi-Fi */
|
2024-03-21 11:05:08 +08:00
|
|
|
|
2023-01-16 08:24:03 +08:00
|
|
|
/* IoT Cloud */
|
|
|
|
|
2024-06-18 11:15:59 +08:00
|
|
|
/* end of IoT Cloud */
|
|
|
|
/* end of IoT - internet of things */
|
2023-01-16 08:24:03 +08:00
|
|
|
|
|
|
|
/* security packages */
|
|
|
|
|
2024-06-18 11:15:59 +08:00
|
|
|
/* end of security packages */
|
2023-01-16 08:24:03 +08:00
|
|
|
|
|
|
|
/* language packages */
|
|
|
|
|
|
|
|
/* JSON: JavaScript Object Notation, a lightweight data-interchange format */
|
|
|
|
|
2024-06-18 11:15:59 +08:00
|
|
|
/* end of JSON: JavaScript Object Notation, a lightweight data-interchange format */
|
2023-01-16 08:24:03 +08:00
|
|
|
|
|
|
|
/* XML: Extensible Markup Language */
|
|
|
|
|
2024-06-18 11:15:59 +08:00
|
|
|
/* end of XML: Extensible Markup Language */
|
|
|
|
/* end of language packages */
|
2023-01-16 08:24:03 +08:00
|
|
|
|
|
|
|
/* multimedia packages */
|
|
|
|
|
|
|
|
/* LVGL: powerful and easy-to-use embedded GUI library */
|
|
|
|
|
2024-06-18 11:15:59 +08:00
|
|
|
/* end of LVGL: powerful and easy-to-use embedded GUI library */
|
2023-01-16 08:24:03 +08:00
|
|
|
|
|
|
|
/* u8g2: a monochrome graphic library */
|
|
|
|
|
2024-06-18 11:15:59 +08:00
|
|
|
/* end of u8g2: a monochrome graphic library */
|
|
|
|
/* end of multimedia packages */
|
2023-01-16 08:24:03 +08:00
|
|
|
|
|
|
|
/* tools packages */
|
|
|
|
|
2024-06-18 11:15:59 +08:00
|
|
|
/* end of tools packages */
|
2023-01-16 08:24:03 +08:00
|
|
|
|
|
|
|
/* system packages */
|
|
|
|
|
|
|
|
/* enhanced kernel services */
|
|
|
|
|
2024-06-18 11:15:59 +08:00
|
|
|
/* end of enhanced kernel services */
|
2023-01-16 08:24:03 +08:00
|
|
|
|
|
|
|
/* acceleration: Assembly language or algorithmic acceleration packages */
|
|
|
|
|
2024-06-18 11:15:59 +08:00
|
|
|
/* end of acceleration: Assembly language or algorithmic acceleration packages */
|
2023-01-16 08:24:03 +08:00
|
|
|
|
|
|
|
/* CMSIS: ARM Cortex-M Microcontroller Software Interface Standard */
|
|
|
|
|
2024-06-18 11:15:59 +08:00
|
|
|
/* end of CMSIS: ARM Cortex-M Microcontroller Software Interface Standard */
|
2023-01-16 08:24:03 +08:00
|
|
|
|
|
|
|
/* Micrium: Micrium software products porting for RT-Thread */
|
|
|
|
|
2024-06-18 11:15:59 +08:00
|
|
|
/* end of Micrium: Micrium software products porting for RT-Thread */
|
|
|
|
/* end of system packages */
|
2023-01-16 08:24:03 +08:00
|
|
|
|
|
|
|
/* peripheral libraries and drivers */
|
|
|
|
|
2024-07-15 12:06:17 +08:00
|
|
|
/* HAL & SDK Drivers */
|
|
|
|
|
|
|
|
/* STM32 HAL & SDK Drivers */
|
|
|
|
|
|
|
|
/* end of STM32 HAL & SDK Drivers */
|
|
|
|
|
|
|
|
/* Infineon HAL Packages */
|
|
|
|
|
|
|
|
/* end of Infineon HAL Packages */
|
2023-01-16 08:24:03 +08:00
|
|
|
|
|
|
|
/* Kendryte SDK */
|
|
|
|
|
2024-06-18 11:15:59 +08:00
|
|
|
/* end of Kendryte SDK */
|
2024-07-15 12:06:17 +08:00
|
|
|
/* end of HAL & SDK Drivers */
|
|
|
|
|
|
|
|
/* sensors drivers */
|
|
|
|
|
|
|
|
/* end of sensors drivers */
|
|
|
|
|
|
|
|
/* touch drivers */
|
|
|
|
|
|
|
|
/* end of touch drivers */
|
2024-06-18 11:15:59 +08:00
|
|
|
/* end of peripheral libraries and drivers */
|
2024-03-21 11:05:08 +08:00
|
|
|
|
2023-01-16 08:24:03 +08:00
|
|
|
/* AI packages */
|
|
|
|
|
2024-06-18 11:15:59 +08:00
|
|
|
/* end of AI packages */
|
2024-03-21 11:05:08 +08:00
|
|
|
|
2024-07-15 12:06:17 +08:00
|
|
|
/* Signal Processing and Control Algorithm Packages */
|
|
|
|
|
|
|
|
/* end of Signal Processing and Control Algorithm Packages */
|
|
|
|
|
2023-01-16 08:24:03 +08:00
|
|
|
/* miscellaneous packages */
|
|
|
|
|
|
|
|
/* project laboratory */
|
|
|
|
|
2024-06-18 11:15:59 +08:00
|
|
|
/* end of project laboratory */
|
|
|
|
|
2023-01-16 08:24:03 +08:00
|
|
|
/* samples: kernel and components samples */
|
|
|
|
|
2024-06-18 11:15:59 +08:00
|
|
|
/* end of samples: kernel and components samples */
|
2023-01-16 08:24:03 +08:00
|
|
|
|
|
|
|
/* entertainment: terminal games and other interesting software packages */
|
|
|
|
|
2024-06-18 11:15:59 +08:00
|
|
|
/* end of entertainment: terminal games and other interesting software packages */
|
|
|
|
/* end of miscellaneous packages */
|
2023-01-16 08:24:03 +08:00
|
|
|
|
|
|
|
/* Arduino libraries */
|
|
|
|
|
|
|
|
|
2024-07-15 12:06:17 +08:00
|
|
|
/* Projects and Demos */
|
2023-01-16 08:24:03 +08:00
|
|
|
|
2024-07-15 12:06:17 +08:00
|
|
|
/* end of Projects and Demos */
|
2023-01-16 08:24:03 +08:00
|
|
|
|
|
|
|
/* Sensors */
|
|
|
|
|
2024-06-18 11:15:59 +08:00
|
|
|
/* end of Sensors */
|
2023-01-16 08:24:03 +08:00
|
|
|
|
|
|
|
/* Display */
|
|
|
|
|
2024-06-18 11:15:59 +08:00
|
|
|
/* end of Display */
|
2023-01-16 08:24:03 +08:00
|
|
|
|
|
|
|
/* Timing */
|
|
|
|
|
2024-06-18 11:15:59 +08:00
|
|
|
/* end of Timing */
|
2023-01-16 08:24:03 +08:00
|
|
|
|
|
|
|
/* Data Processing */
|
|
|
|
|
2024-06-18 11:15:59 +08:00
|
|
|
/* end of Data Processing */
|
2023-01-16 08:24:03 +08:00
|
|
|
|
|
|
|
/* Data Storage */
|
|
|
|
|
|
|
|
/* Communication */
|
|
|
|
|
2024-06-18 11:15:59 +08:00
|
|
|
/* end of Communication */
|
2023-01-16 08:24:03 +08:00
|
|
|
|
|
|
|
/* Device Control */
|
|
|
|
|
2024-06-18 11:15:59 +08:00
|
|
|
/* end of Device Control */
|
2023-01-16 08:24:03 +08:00
|
|
|
|
|
|
|
/* Other */
|
|
|
|
|
2024-07-15 12:06:17 +08:00
|
|
|
/* end of Other */
|
|
|
|
|
2023-01-16 08:24:03 +08:00
|
|
|
/* Signal IO */
|
|
|
|
|
2024-06-18 11:15:59 +08:00
|
|
|
/* end of Signal IO */
|
2023-01-16 08:24:03 +08:00
|
|
|
|
|
|
|
/* Uncategorized */
|
|
|
|
|
2024-06-18 11:15:59 +08:00
|
|
|
/* end of Arduino libraries */
|
|
|
|
/* end of RT-Thread online packages */
|
|
|
|
|
|
|
|
/* Privated Packages of RealThread */
|
|
|
|
|
|
|
|
|
|
|
|
/* Network Utilities */
|
|
|
|
|
|
|
|
/* end of Network Utilities */
|
|
|
|
|
|
|
|
/* RT-Thread Smart */
|
|
|
|
|
|
|
|
/* end of RT-Thread Smart */
|
|
|
|
/* end of Privated Packages of RealThread */
|
|
|
|
|
2021-12-02 11:02:36 +08:00
|
|
|
/* RISC-V QEMU virt64 configs */
|
2021-05-18 09:57:25 +08:00
|
|
|
|
2022-12-03 12:07:44 +08:00
|
|
|
#define RISCV_S_MODE
|
|
|
|
#define BSP_USING_VIRTIO_BLK
|
|
|
|
#define BSP_USING_VIRTIO_NET
|
2023-01-09 10:08:55 +08:00
|
|
|
#define BSP_USING_VIRTIO_CONSOLE
|
2024-06-18 11:15:59 +08:00
|
|
|
/* end of RISC-V QEMU virt64 configs */
|
2022-12-03 12:07:44 +08:00
|
|
|
#define BOARD_QEMU_VIRT_RV64
|
|
|
|
#define ENABLE_FPU
|
|
|
|
#define ARCH_USING_NEW_CTX_SWITCH
|
2021-05-18 09:57:25 +08:00
|
|
|
#define __STACKSIZE__ 16384
|
|
|
|
|
|
|
|
#endif
|