rt-thread/bsp/wch/risc-v/ch32v307v-r1/rtconfig.h

339 lines
6.5 KiB
C
Raw Normal View History

2022-08-24 09:51:35 +08:00
#ifndef RT_CONFIG_H__
#define RT_CONFIG_H__
/* RT-Thread Kernel */
#define RT_NAME_MAX 8
2024-03-21 11:05:08 +08:00
#define RT_CPUS_NR 1
2023-01-12 12:25:57 +08:00
#define RT_ALIGN_SIZE 8
2022-08-24 09:51:35 +08:00
#define RT_THREAD_PRIORITY_32
#define RT_THREAD_PRIORITY_MAX 32
#define RT_TICK_PER_SECOND 1000
#define RT_USING_HOOK
#define RT_HOOK_USING_FUNC_PTR
#define RT_USING_IDLE_HOOK
#define RT_IDLE_HOOK_LIST_SIZE 4
#define IDLE_THREAD_STACK_SIZE 256
#define RT_USING_TIMER_SOFT
#define RT_TIMER_THREAD_PRIO 4
#define RT_TIMER_THREAD_STACK_SIZE 512
/* kservice optimization */
2024-07-25 17:40:56 +08:00
/* end of kservice optimization */
/* klibc optimization */
/* end of klibc optimization */
#define RT_USING_DEBUG
2024-07-25 17:40:56 +08:00
#define RT_DEBUGING_ASSERT
#define RT_DEBUGING_COLOR
#define RT_DEBUGING_CONTEXT
2022-08-24 09:51:35 +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
2024-07-25 17:40:56 +08:00
/* end of Inter-Thread communication */
2022-08-24 09:51:35 +08:00
/* Memory Management */
#define RT_USING_SMALL_MEM
#define RT_USING_SMALL_MEM_AS_HEAP
#define RT_USING_HEAP
2024-07-25 17:40:56 +08:00
/* end of Memory Management */
2022-08-24 09:51:35 +08:00
#define RT_USING_DEVICE
#define RT_USING_CONSOLE
#define RT_CONSOLEBUF_SIZE 128
#define RT_CONSOLE_DEVICE_NAME "uart1"
2024-07-25 17:40:56 +08:00
#define RT_VER_NUM 0x50200
2024-03-21 11:05:08 +08:00
#define RT_BACKTRACE_LEVEL_MAX_NR 32
2024-07-25 17:40:56 +08:00
/* end of RT-Thread Kernel */
#define RT_USING_HW_ATOMIC
2022-08-24 09:51:35 +08:00
#define ARCH_RISCV
/* RT-Thread Components */
#define RT_USING_COMPONENTS_INIT
#define RT_USING_USER_MAIN
#define RT_MAIN_THREAD_STACK_SIZE 2048
#define RT_MAIN_THREAD_PRIORITY 10
#define RT_USING_MSH
#define RT_USING_FINSH
#define FINSH_USING_MSH
#define FINSH_THREAD_NAME "tshell"
2024-07-25 17:40:56 +08:00
#define FINSH_THREAD_PRIORITY 11
#define FINSH_THREAD_STACK_SIZE 2048
2022-08-24 09:51:35 +08:00
#define FINSH_USING_HISTORY
#define FINSH_HISTORY_LINES 5
#define FINSH_USING_SYMTAB
#define FINSH_CMD_SIZE 80
#define MSH_USING_BUILT_IN_COMMANDS
#define FINSH_USING_DESCRIPTION
#define FINSH_ARG_MAX 10
#define FINSH_USING_OPTION_COMPLETION
/* DFS: device virtual file system */
2024-07-25 17:40:56 +08:00
/* end of DFS: device virtual file system */
2022-08-24 09:51:35 +08:00
/* Device Drivers */
#define RT_USING_DEVICE_IPC
#define RT_UNAMED_PIPE_NUMBER 64
2022-08-24 09:51:35 +08:00
#define RT_USING_SERIAL
#define RT_USING_SERIAL_V1
#define RT_SERIAL_RB_BUFSZ 64
#define RT_USING_PIN
2024-07-25 17:40:56 +08:00
/* end of Device Drivers */
2022-08-24 09:51:35 +08:00
/* C/C++ and POSIX layer */
/* 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-07-25 17:40:56 +08:00
/* end of Timezone and Daylight Saving Time */
/* end of ISO-ANSI C layer */
2022-08-24 09:51:35 +08:00
/* POSIX (Portable Operating System Interface) layer */
/* Interprocess Communication (IPC) */
/* Socket is in the 'Network' category */
2024-07-25 17:40:56 +08:00
/* end of Interprocess Communication (IPC) */
/* end of POSIX (Portable Operating System Interface) layer */
/* end of C/C++ and POSIX layer */
2022-08-24 09:51:35 +08:00
/* Network */
2024-07-25 17:40:56 +08:00
/* end of Network */
2022-08-24 09:51:35 +08:00
2024-03-21 11:05:08 +08:00
/* Memory protection */
2024-07-25 17:40:56 +08:00
/* end of Memory protection */
2024-03-21 11:05:08 +08:00
2022-08-24 09:51:35 +08:00
/* Utilities */
2024-07-25 17:40:56 +08:00
/* end of Utilities */
/* Using USB legacy version */
/* end of Using USB legacy version */
/* end of RT-Thread Components */
2022-08-24 09:51:35 +08:00
/* RT-Thread Utestcases */
2024-07-25 17:40:56 +08:00
/* end of RT-Thread Utestcases */
2022-08-24 09:51:35 +08:00
/* RT-Thread online packages */
/* IoT - internet of things */
/* Wi-Fi */
/* Marvell WiFi */
2024-07-25 17:40:56 +08:00
/* end of Marvell WiFi */
2022-08-24 09:51:35 +08:00
/* Wiced WiFi */
2024-07-25 17:40:56 +08:00
/* end of Wiced WiFi */
2022-08-24 09:51:35 +08:00
2024-03-21 11:05:08 +08:00
/* CYW43012 WiFi */
2024-07-25 17:40:56 +08:00
/* end of CYW43012 WiFi */
2024-03-21 11:05:08 +08:00
/* BL808 WiFi */
2024-07-25 17:40:56 +08:00
/* end of BL808 WiFi */
2024-03-21 11:05:08 +08:00
/* CYW43439 WiFi */
2024-07-25 17:40:56 +08:00
/* end of CYW43439 WiFi */
/* end of Wi-Fi */
2024-03-21 11:05:08 +08:00
2022-08-24 09:51:35 +08:00
/* IoT Cloud */
2024-07-25 17:40:56 +08:00
/* end of IoT Cloud */
/* end of IoT - internet of things */
2022-08-24 09:51:35 +08:00
/* security packages */
2024-07-25 17:40:56 +08:00
/* end of security packages */
2022-08-24 09:51:35 +08:00
/* language packages */
/* JSON: JavaScript Object Notation, a lightweight data-interchange format */
2024-07-25 17:40:56 +08:00
/* end of JSON: JavaScript Object Notation, a lightweight data-interchange format */
2022-08-24 09:51:35 +08:00
/* XML: Extensible Markup Language */
2024-07-25 17:40:56 +08:00
/* end of XML: Extensible Markup Language */
/* end of language packages */
2022-08-24 09:51:35 +08:00
/* multimedia packages */
/* LVGL: powerful and easy-to-use embedded GUI library */
2024-07-25 17:40:56 +08:00
/* end of LVGL: powerful and easy-to-use embedded GUI library */
2022-08-24 09:51:35 +08:00
/* u8g2: a monochrome graphic library */
2024-07-25 17:40:56 +08:00
/* end of u8g2: a monochrome graphic library */
/* end of multimedia packages */
2022-08-24 09:51:35 +08:00
/* tools packages */
2024-07-25 17:40:56 +08:00
/* end of tools packages */
2022-08-24 09:51:35 +08:00
/* system packages */
/* enhanced kernel services */
2024-07-25 17:40:56 +08:00
/* end of enhanced kernel services */
2022-08-24 09:51:35 +08:00
/* acceleration: Assembly language or algorithmic acceleration packages */
2024-07-25 17:40:56 +08:00
/* end of acceleration: Assembly language or algorithmic acceleration packages */
2022-08-24 09:51:35 +08:00
/* CMSIS: ARM Cortex-M Microcontroller Software Interface Standard */
2024-07-25 17:40:56 +08:00
/* end of CMSIS: ARM Cortex-M Microcontroller Software Interface Standard */
2022-08-24 09:51:35 +08:00
/* Micrium: Micrium software products porting for RT-Thread */
2024-07-25 17:40:56 +08:00
/* end of Micrium: Micrium software products porting for RT-Thread */
/* end of system packages */
2022-08-24 09:51:35 +08:00
/* peripheral libraries and drivers */
2024-03-21 11:05:08 +08:00
/* HAL & SDK Drivers */
2024-03-21 11:05:08 +08:00
/* STM32 HAL & SDK Drivers */
2024-07-25 17:40:56 +08:00
/* end of STM32 HAL & SDK Drivers */
/* Infineon HAL Packages */
/* end of Infineon HAL Packages */
/* Kendryte SDK */
2022-08-24 09:51:35 +08:00
2024-07-25 17:40:56 +08:00
/* end of Kendryte SDK */
/* end of HAL & SDK Drivers */
2022-08-24 09:51:35 +08:00
2024-03-21 11:05:08 +08:00
/* sensors drivers */
2024-07-25 17:40:56 +08:00
/* end of sensors drivers */
2024-03-21 11:05:08 +08:00
/* touch drivers */
2024-07-25 17:40:56 +08:00
/* end of touch drivers */
/* end of peripheral libraries and drivers */
2024-03-21 11:05:08 +08:00
2022-08-24 09:51:35 +08:00
/* AI packages */
2024-07-25 17:40:56 +08:00
/* end of AI packages */
2022-08-24 09:51:35 +08:00
/* Signal Processing and Control Algorithm Packages */
2024-07-25 17:40:56 +08:00
/* end of Signal Processing and Control Algorithm Packages */
2022-08-24 09:51:35 +08:00
/* miscellaneous packages */
/* project laboratory */
2024-07-25 17:40:56 +08:00
/* end of project laboratory */
2022-08-24 09:51:35 +08:00
/* samples: kernel and components samples */
2024-07-25 17:40:56 +08:00
/* end of samples: kernel and components samples */
2022-08-24 09:51:35 +08:00
/* entertainment: terminal games and other interesting software packages */
2024-07-25 17:40:56 +08:00
/* end of entertainment: terminal games and other interesting software packages */
/* end of miscellaneous packages */
/* Arduino libraries */
/* Projects and Demos */
2024-07-25 17:40:56 +08:00
/* end of Projects and Demos */
/* Sensors */
2024-07-25 17:40:56 +08:00
/* end of Sensors */
/* Display */
2024-07-25 17:40:56 +08:00
/* end of Display */
/* Timing */
2024-07-25 17:40:56 +08:00
/* end of Timing */
/* Data Processing */
2024-07-25 17:40:56 +08:00
/* end of Data Processing */
/* Data Storage */
/* Communication */
2024-07-25 17:40:56 +08:00
/* end of Communication */
/* Device Control */
2024-07-25 17:40:56 +08:00
/* end of Device Control */
/* Other */
2024-07-25 17:40:56 +08:00
/* end of Other */
/* Signal IO */
2024-07-25 17:40:56 +08:00
/* end of Signal IO */
/* Uncategorized */
2024-07-25 17:40:56 +08:00
/* end of Arduino libraries */
/* end of RT-Thread online packages */
2022-08-24 09:51:35 +08:00
#define SOC_RISCV_FAMILY_CH32
#define SOC_RISCV_SERIES_CH32V3
2022-08-24 09:51:35 +08:00
/* Hardware Drivers Config */
#define SOC_CH32V307VC
/* Onboard Peripheral Drivers */
2024-07-25 17:40:56 +08:00
/* end of Onboard Peripheral Drivers */
2022-08-24 09:51:35 +08:00
/* On-chip Peripheral Drivers */
#define BSP_USING_GPIO
2022-08-24 09:51:35 +08:00
#define BSP_USING_UART
#define BSP_USING_UART1
#define LSI_VALUE 40000
2024-07-25 17:40:56 +08:00
/* end of On-chip Peripheral Drivers */
2022-08-24 09:51:35 +08:00
/* Board extended module Drivers */
2024-07-25 17:40:56 +08:00
/* end of Hardware Drivers Config */
2022-08-24 09:51:35 +08:00
#endif