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>
53 lines
1.3 KiB
Python
53 lines
1.3 KiB
Python
from building import *
|
|
import rtconfig
|
|
|
|
cwd = GetCurrentDir()
|
|
src = ['spi_core.c', 'spi_dev.c']
|
|
CPPPATH = [cwd, cwd + '/../include']
|
|
LOCAL_CCFLAGS = ''
|
|
|
|
if GetDepend('RT_USING_QSPI'):
|
|
src += ['qspi_core.c']
|
|
|
|
src_device = []
|
|
|
|
if GetDepend('RT_USING_SPI_WIFI'):
|
|
src_device += ['spi_wifi_rw009.c']
|
|
|
|
if GetDepend('RT_USING_W25QXX'):
|
|
src_device += ['spi_flash_w25qxx.c']
|
|
|
|
if GetDepend('RT_USING_W25QXX_MTD'):
|
|
src_device += ['spi_flash_w25qxx_mtd.c']
|
|
|
|
if GetDepend('RT_USING_ENC28J60'):
|
|
src_device += ['enc28j60.c']
|
|
|
|
if GetDepend('RT_USING_AT45DBXX'):
|
|
src_device += ['spi_flash_at45dbxx.c']
|
|
|
|
if GetDepend('RT_USING_SST25VFXX'):
|
|
src_device += ['spi_flash_sst25vfxx.c']
|
|
|
|
if GetDepend('RT_USING_GD'):
|
|
src_device += ['spi_flash_gd.c']
|
|
|
|
if GetDepend('RT_USING_SPI_MSD'):
|
|
src_device += ['spi_msd.c']
|
|
|
|
if GetDepend('RT_USING_SFUD'):
|
|
src_device += ['spi_flash_sfud.c', 'sfud/src/sfud.c']
|
|
CPPPATH += [cwd + '/sfud/inc']
|
|
if GetDepend('RT_SFUD_USING_SFDP'):
|
|
src_device += ['sfud/src/sfud_sfdp.c']
|
|
if rtconfig.CROSS_TOOL == 'gcc':
|
|
LOCAL_CCFLAGS += ' -std=c99'
|
|
elif rtconfig.CROSS_TOOL == 'keil':
|
|
LOCAL_CCFLAGS += ' --c99'
|
|
|
|
src += src_device
|
|
|
|
group = DefineGroup('DeviceDrivers', src, depend = ['RT_USING_SPI'], CPPPATH = CPPPATH, LOCAL_CCFLAGS = LOCAL_CCFLAGS)
|
|
|
|
Return('group')
|