rt-thread-official/bsp/cvitek/c906_little/rtconfig.h

335 lines
6.6 KiB
C
Raw Normal View History

2024-01-29 09:13:21 +08:00
#ifndef RT_CONFIG_H__
#define RT_CONFIG_H__
/* RT-Thread Kernel */
#define RT_NAME_MAX 32
#define RT_CPUS_NR 1
#define RT_ALIGN_SIZE 8
#define RT_THREAD_PRIORITY_32
#define RT_THREAD_PRIORITY_MAX 32
#define RT_TICK_PER_SECOND 1000
#define RT_USING_OVERFLOW_CHECK
#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 1024
#define RT_USING_TIMER_SOFT
#define RT_TIMER_THREAD_PRIO 4
#define RT_TIMER_THREAD_STACK_SIZE 2048
/* kservice optimization */
2024-05-24 00:13:11 +08:00
/* end of kservice optimization */
/* klibc optimization */
#define RT_KLIBC_USING_PRINTF_LONGLONG
/* end of klibc optimization */
2024-01-29 09:13:21 +08:00
#define RT_USING_DEBUG
2024-05-24 00:13:11 +08:00
#define RT_DEBUGING_ASSERT
2024-01-29 09:13:21 +08:00
#define RT_DEBUGING_COLOR
#define RT_DEBUGING_CONTEXT
/* Inter-Thread communication */
#define RT_USING_SEMAPHORE
#define RT_USING_MUTEX
#define RT_USING_EVENT
#define RT_USING_MAILBOX
#define RT_USING_MESSAGEQUEUE
2024-05-24 00:13:11 +08:00
/* end of Inter-Thread communication */
2024-01-29 09:13:21 +08:00
/* Memory Management */
#define RT_USING_MEMPOOL
#define RT_USING_SMALL_MEM
#define RT_USING_SMALL_MEM_AS_HEAP
#define RT_USING_HEAP
2024-05-24 00:13:11 +08:00
/* end of Memory Management */
2024-01-29 09:13:21 +08:00
#define RT_USING_DEVICE
#define RT_USING_CONSOLE
#define RT_CONSOLEBUF_SIZE 512
#define RT_CONSOLE_DEVICE_NAME "uart1"
2024-05-24 00:13:11 +08:00
#define RT_VER_NUM 0x50200
2024-01-29 09:13:21 +08:00
#define RT_BACKTRACE_LEVEL_MAX_NR 32
2024-05-24 00:13:11 +08:00
/* end of RT-Thread Kernel */
2024-01-29 09:13:21 +08:00
#define ARCH_CPU_64BIT
#define ARCH_RISCV
#define ARCH_RISCV_FPU
#define ARCH_RISCV_FPU_D
#define ARCH_RISCV64
/* RT-Thread Components */
#define RT_USING_COMPONENTS_INIT
#define RT_USING_USER_MAIN
#define RT_MAIN_THREAD_STACK_SIZE 6144
#define RT_MAIN_THREAD_PRIORITY 10
#define RT_USING_MSH
#define RT_USING_FINSH
#define FINSH_USING_MSH
#define FINSH_THREAD_NAME "tshell"
#define FINSH_THREAD_PRIORITY 20
#define FINSH_THREAD_STACK_SIZE 4096
#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-05-24 00:13:11 +08:00
/* end of DFS: device virtual file system */
2024-01-29 09:13:21 +08:00
/* Device Drivers */
#define RT_USING_DEVICE_IPC
#define RT_UNAMED_PIPE_NUMBER 64
#define RT_USING_SERIAL
#define RT_USING_SERIAL_V1
#define RT_SERIAL_USING_DMA
#define RT_SERIAL_RB_BUFSZ 64
#define RT_USING_PIN
/* Using USB */
2024-05-24 00:13:11 +08:00
/* end of Using USB */
/* end of Device Drivers */
2024-01-29 09:13:21 +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-05-24 00:13:11 +08:00
/* end of Timezone and Daylight Saving Time */
/* end of ISO-ANSI C layer */
2024-01-29 09:13:21 +08:00
/* POSIX (Portable Operating System Interface) layer */
/* Interprocess Communication (IPC) */
/* Socket is in the 'Network' category */
2024-05-24 00:13:11 +08:00
/* end of Interprocess Communication (IPC) */
/* end of POSIX (Portable Operating System Interface) layer */
/* end of C/C++ and POSIX layer */
2024-01-29 09:13:21 +08:00
/* Network */
2024-05-24 00:13:11 +08:00
/* end of Network */
2024-01-29 09:13:21 +08:00
/* Memory protection */
2024-05-24 00:13:11 +08:00
/* end of Memory protection */
2024-01-29 09:13:21 +08:00
/* Utilities */
2024-05-24 00:13:11 +08:00
/* end of Utilities */
/* end of RT-Thread Components */
2024-01-29 09:13:21 +08:00
/* RT-Thread Utestcases */
2024-05-24 00:13:11 +08:00
/* end of RT-Thread Utestcases */
2024-01-29 09:13:21 +08:00
/* RT-Thread online packages */
/* IoT - internet of things */
/* Wi-Fi */
/* Marvell WiFi */
2024-05-24 00:13:11 +08:00
/* end of Marvell WiFi */
2024-01-29 09:13:21 +08:00
/* Wiced WiFi */
2024-05-24 00:13:11 +08:00
/* end of Wiced WiFi */
2024-01-29 09:13:21 +08:00
/* CYW43012 WiFi */
2024-05-24 00:13:11 +08:00
/* end of CYW43012 WiFi */
2024-01-29 09:13:21 +08:00
/* BL808 WiFi */
2024-05-24 00:13:11 +08:00
/* end of BL808 WiFi */
2024-01-29 09:13:21 +08:00
/* CYW43439 WiFi */
2024-05-24 00:13:11 +08:00
/* end of CYW43439 WiFi */
/* end of Wi-Fi */
2024-01-29 09:13:21 +08:00
/* IoT Cloud */
2024-05-24 00:13:11 +08:00
/* end of IoT Cloud */
/* end of IoT - internet of things */
2024-01-29 09:13:21 +08:00
/* security packages */
2024-05-24 00:13:11 +08:00
/* end of security packages */
2024-01-29 09:13:21 +08:00
/* language packages */
/* JSON: JavaScript Object Notation, a lightweight data-interchange format */
2024-05-24 00:13:11 +08:00
/* end of JSON: JavaScript Object Notation, a lightweight data-interchange format */
2024-01-29 09:13:21 +08:00
/* XML: Extensible Markup Language */
2024-05-24 00:13:11 +08:00
/* end of XML: Extensible Markup Language */
/* end of language packages */
2024-01-29 09:13:21 +08:00
/* multimedia packages */
/* LVGL: powerful and easy-to-use embedded GUI library */
2024-05-24 00:13:11 +08:00
/* end of LVGL: powerful and easy-to-use embedded GUI library */
2024-01-29 09:13:21 +08:00
/* u8g2: a monochrome graphic library */
2024-05-24 00:13:11 +08:00
/* end of u8g2: a monochrome graphic library */
/* end of multimedia packages */
2024-01-29 09:13:21 +08:00
/* tools packages */
2024-05-24 00:13:11 +08:00
/* end of tools packages */
2024-01-29 09:13:21 +08:00
/* system packages */
/* enhanced kernel services */
2024-05-24 00:13:11 +08:00
/* end of enhanced kernel services */
2024-01-29 09:13:21 +08:00
/* acceleration: Assembly language or algorithmic acceleration packages */
2024-05-24 00:13:11 +08:00
/* end of acceleration: Assembly language or algorithmic acceleration packages */
2024-01-29 09:13:21 +08:00
/* CMSIS: ARM Cortex-M Microcontroller Software Interface Standard */
2024-05-24 00:13:11 +08:00
/* end of CMSIS: ARM Cortex-M Microcontroller Software Interface Standard */
2024-01-29 09:13:21 +08:00
/* Micrium: Micrium software products porting for RT-Thread */
2024-05-24 00:13:11 +08:00
/* end of Micrium: Micrium software products porting for RT-Thread */
/* end of system packages */
2024-01-29 09:13:21 +08:00
/* peripheral libraries and drivers */
2024-05-24 00:13:11 +08:00
/* HAL & SDK Drivers */
2024-03-21 11:05:08 +08:00
2024-05-24 00:13:11 +08:00
/* STM32 HAL & SDK Drivers */
2024-03-21 11:05:08 +08:00
2024-05-24 00:13:11 +08:00
/* end of STM32 HAL & SDK Drivers */
2024-03-21 11:05:08 +08:00
/* Kendryte SDK */
2024-05-24 00:13:11 +08:00
/* end of Kendryte SDK */
/* end of HAL & SDK Drivers */
/* sensors drivers */
/* end of sensors drivers */
/* touch drivers */
/* end of touch drivers */
/* end of peripheral libraries and drivers */
2024-01-29 09:13:21 +08:00
/* AI packages */
2024-05-24 00:13:11 +08:00
/* end of AI packages */
2024-01-29 09:13:21 +08:00
/* Signal Processing and Control Algorithm Packages */
2024-05-24 00:13:11 +08:00
/* end of Signal Processing and Control Algorithm Packages */
2024-01-29 09:13:21 +08:00
/* miscellaneous packages */
/* project laboratory */
2024-05-24 00:13:11 +08:00
/* end of project laboratory */
2024-01-29 09:13:21 +08:00
/* samples: kernel and components samples */
2024-05-24 00:13:11 +08:00
/* end of samples: kernel and components samples */
2024-01-29 09:13:21 +08:00
/* entertainment: terminal games and other interesting software packages */
2024-05-24 00:13:11 +08:00
/* end of entertainment: terminal games and other interesting software packages */
/* end of miscellaneous packages */
2024-01-29 09:13:21 +08:00
/* Arduino libraries */
/* Projects and Demos */
2024-05-24 00:13:11 +08:00
/* end of Projects and Demos */
2024-01-29 09:13:21 +08:00
/* Sensors */
2024-05-24 00:13:11 +08:00
/* end of Sensors */
2024-01-29 09:13:21 +08:00
/* Display */
2024-05-24 00:13:11 +08:00
/* end of Display */
2024-01-29 09:13:21 +08:00
/* Timing */
2024-05-24 00:13:11 +08:00
/* end of Timing */
2024-01-29 09:13:21 +08:00
/* Data Processing */
2024-05-24 00:13:11 +08:00
/* end of Data Processing */
2024-01-29 09:13:21 +08:00
/* Data Storage */
/* Communication */
2024-05-24 00:13:11 +08:00
/* end of Communication */
2024-01-29 09:13:21 +08:00
/* Device Control */
2024-05-24 00:13:11 +08:00
/* end of Device Control */
2024-01-29 09:13:21 +08:00
/* Other */
2024-05-24 00:13:11 +08:00
/* end of Other */
2024-01-29 09:13:21 +08:00
/* Signal IO */
2024-05-24 00:13:11 +08:00
/* end of Signal IO */
2024-01-29 09:13:21 +08:00
/* Uncategorized */
2024-05-24 00:13:11 +08:00
/* end of Arduino libraries */
/* end of RT-Thread online packages */
2024-01-29 09:13:21 +08:00
/* General Drivers Configuration */
#define BSP_USING_UART
#define RT_USING_UART1
#define UART_IRQ_BASE 30
2024-05-24 00:13:11 +08:00
/* end of General Drivers Configuration */
2024-01-29 09:13:21 +08:00
#define BSP_USING_C906_LITTLE
#define PLIC_PHY_ADDR 0x70000000
#define IRQ_MAX_NR 128
#define TIMER_CLK_FREQ 25000000
2024-05-24 00:13:11 +08:00
#define GPIO_IRQ_BASE 41
#define SYS_GPIO_IRQ_BASE 47
#define SOC_TYPE_SG2002
2024-03-28 23:35:54 +08:00
#define BOARD_TYPE_MILKV_DUO256M
2024-01-29 09:13:21 +08:00
#endif