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>
68 lines
2.0 KiB
Plaintext
68 lines
2.0 KiB
Plaintext
|
|
menuconfig RT_USING_CMBACKTRACE
|
|
bool "CmBacktrace: Advanced fault backtrace library for ARM Cortex-M series MCU."
|
|
default n
|
|
|
|
if RT_USING_CMBACKTRACE
|
|
|
|
choice
|
|
prompt "CPU Platform"
|
|
default PKG_CMBACKTRACE_PLATFORM_NOT_SELECTED
|
|
help
|
|
Select the ARM Cortex-M CPU Platform of your device
|
|
config PKG_CMBACKTRACE_PLATFORM_M0_M0PLUS
|
|
bool "Cortex-M0/M0+"
|
|
config PKG_CMBACKTRACE_PLATFORM_M3
|
|
bool "Cortex-M3"
|
|
config PKG_CMBACKTRACE_PLATFORM_M4
|
|
bool "Cortex-M4"
|
|
config PKG_CMBACKTRACE_PLATFORM_M7
|
|
bool "Cortex-M7"
|
|
config PKG_CMBACKTRACE_PLATFORM_NOT_SELECTED
|
|
bool "Not selected, please select"
|
|
endchoice
|
|
|
|
config PKG_CMBACKTRACE_DUMP_STACK
|
|
bool
|
|
prompt "Dump the thread or main stack info"
|
|
default y
|
|
help
|
|
Dump the stack information when a fault occurs. It will add a lot of print information.
|
|
|
|
choice
|
|
prompt "Language of print information"
|
|
default PKG_CMBACKTRACE_PRINT_ENGLISH
|
|
help
|
|
Select the language of print information when a fault occurs
|
|
config PKG_CMBACKTRACE_PRINT_ENGLISH
|
|
bool "Engish"
|
|
config PKG_CMBACKTRACE_PRINT_CHINESE
|
|
bool "Chinese"
|
|
endchoice
|
|
|
|
config PKG_CMBACKTRACE_FAULT_REBOOT
|
|
bool "force reboot after a fault occur"
|
|
default n
|
|
depends on RT_USING_RESET
|
|
|
|
config PKG_CMBACKTRACE_FAULT_DUMP_TO_FLASH
|
|
bool
|
|
prompt "Dump the fault to flash"
|
|
default n
|
|
help
|
|
Dump the fault information to flash, you need a breakpad partition.
|
|
|
|
if PKG_CMBACKTRACE_FAULT_DUMP_TO_FLASH
|
|
|
|
config PKG_CMBACKTRACE_FLASH_PARTITION_NAME
|
|
string "the name of partition which you want store fault information."
|
|
default "breakpad"
|
|
|
|
config PKG_CMBACKTRACE_DUMP_BUF_SIZE
|
|
int "the buffer size for dump fault information to flash."
|
|
default 4096
|
|
|
|
endif
|
|
|
|
endif
|