project:cfg:BoardConfig_IPC: Added fastboot BoardConfig file and firmware post-scripts, distinguishing between the BoardConfigs for Luckfox Pico Pro and Luckfox Pico Max. project:app: Added fastboot_client and rk_smart_door for quick boot applications; updated rkipc app to adapt to the latest media library. media:samples: Added more usage examples. media:rockit: Fixed bugs; removed support for retrieving data frames from VPSS. media:isp: Updated rkaiq library and related tools to support connection to RKISP_Tuner. sysdrv:Makefile: Added support for compiling drv_ko on Luckfox Pico Ultra W using Ubuntu; added support for custom root filesystem. sysdrv:tools:board: Updated Buildroot optional mirror sources, updated some software versions, and stored device tree files and configuration files that undergo multiple modifications for U-Boot and kernel separately. sysdrv:source:mcu: Used RISC-V MCU SDK with RT-Thread system, mainly for initializing camera AE during quick boot. sysdrv:source:uboot: Added support for fastboot; added high baud rate DDR bin for serial firmware upgrades. sysdrv:source:kernel: Upgraded to version 5.10.160; increased NPU frequency for RV1106G3; added support for fastboot. Signed-off-by: luckfox-eng29 <eng29@luckfox.com>
50 lines
1.7 KiB
C
50 lines
1.7 KiB
C
/*
|
|
* This file is only used for doxygen document generation.
|
|
*/
|
|
|
|
/**
|
|
* @mainpage Introduction
|
|
* @author RT-Thread Development Team
|
|
* @version 1.2.0
|
|
*
|
|
* RT-Thread RTOS is an open source embedded real-time operating system and is
|
|
* designed specifically for small memory footprint platforms. The real-time and
|
|
* embedded characters are the most significant advantages of RT-Thread.
|
|
*
|
|
* - Real-Time Character
|
|
*
|
|
* RT-Thread has a real-time operating system kernel, with fully preempted
|
|
* multi-thread scheduler, inter-thread communication with timing sensitivity
|
|
* and transparent interrupt handling.
|
|
*
|
|
* - Embedded Character
|
|
*
|
|
* RT-Thread is suitable for embedded systems for small footprint characters.
|
|
* The kernel is implemented as a simple C library. The simplest application
|
|
* costs less than 1 Kbytes RAM on the ARM Cortex-M platform.
|
|
*
|
|
* @section kernel_arch RT-Thread Architecture
|
|
*
|
|
* RT-Thread system architecture is like:
|
|
* @image html System_Arch.png "Figure 1: RT-Thread Architecture"
|
|
*
|
|
* @section kernel_service Kernel API
|
|
*
|
|
* The Kernel APIs are the core APIs of RT-Thread, which supports the following
|
|
* features:
|
|
* - Multi-thread management and scheduler
|
|
* - Synchronization mechanisms, semaphore, recursive mutex and event set
|
|
* - Inter-thread communication, mailbox and message queue
|
|
* - Memory management, memory pool and dynamic heap memory management
|
|
* - Asynchronous timer
|
|
*
|
|
* For more details, please refer to @ref Kernel
|
|
*
|
|
* @section system_init System Initialization
|
|
*
|
|
* Once RT-Thread operating system starts up, the facility in system must be initialized
|
|
* firstly.
|
|
*
|
|
* For more details, please refer to @ref SystemInit
|
|
*/
|