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>
43 lines
750 B
Python
43 lines
750 B
Python
from building import *
|
|
|
|
src = Split("""
|
|
tc_comm.c
|
|
thread_static.c
|
|
thread_delay.c
|
|
thread_dynamic.c
|
|
thread_priority.c
|
|
thread_same_priority.c
|
|
thread_static_simple.c
|
|
thread_dynamic_simple.c
|
|
thread_delete.c
|
|
thread_detach.c
|
|
thread_yield.c
|
|
thread_suspend.c
|
|
thread_resume.c
|
|
semaphore_static.c
|
|
semaphore_dynamic.c
|
|
semaphore_priority.c
|
|
semaphore_buffer_worker.c
|
|
semaphore_producer_consumer.c
|
|
mutex_simple.c
|
|
event_simple.c
|
|
mbox_simple.c
|
|
mbox_send_wait.c
|
|
messageq_simple.c
|
|
timer_static.c
|
|
timer_dynamic.c
|
|
timer_stop_self.c
|
|
timer_control.c
|
|
timer_timeout.c
|
|
heap_malloc.c
|
|
heap_realloc.c
|
|
memp_simple.c
|
|
tc_sample.c
|
|
""")
|
|
|
|
group = DefineGroup('examples', src,
|
|
depend = ['RT_USING_TC'],
|
|
CPPPATH=[GetCurrentDir()])
|
|
|
|
Return('group')
|