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>
74 lines
1.7 KiB
C
74 lines
1.7 KiB
C
/*
|
|
* Copyright (c) 2006-2018, RT-Thread Development Team
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2010-03-22 Bernard first version
|
|
*/
|
|
|
|
#include <rtthread.h>
|
|
|
|
#ifdef RT_USING_FINSH
|
|
|
|
#include "finsh.h"
|
|
|
|
long hello(void);
|
|
long version(void);
|
|
long list(void);
|
|
long list_thread(void);
|
|
long list_sem(void);
|
|
long list_mutex(void);
|
|
long list_fevent(void);
|
|
long list_event(void);
|
|
long list_mailbox(void);
|
|
long list_msgqueue(void);
|
|
long list_mempool(void);
|
|
long list_timer(void);
|
|
|
|
#ifdef FINSH_USING_SYMTAB
|
|
struct finsh_syscall *_syscall_table_begin = NULL;
|
|
struct finsh_syscall *_syscall_table_end = NULL;
|
|
struct finsh_sysvar *_sysvar_table_begin = NULL;
|
|
struct finsh_sysvar *_sysvar_table_end = NULL;
|
|
#else
|
|
struct finsh_syscall _syscall_table[] =
|
|
{
|
|
{"hello", hello},
|
|
{"version", version},
|
|
{"list", list},
|
|
{"list_thread", list_thread},
|
|
#ifdef RT_USING_SEMAPHORE
|
|
{"list_sem", list_sem},
|
|
#endif
|
|
#ifdef RT_USING_MUTEX
|
|
{"list_mutex", list_mutex},
|
|
#endif
|
|
#ifdef RT_USING_FEVENT
|
|
{"list_fevent", list_fevent},
|
|
#endif
|
|
#ifdef RT_USING_EVENT
|
|
{"list_event", list_event},
|
|
#endif
|
|
#ifdef RT_USING_MAILBOX
|
|
{"list_mb", list_mailbox},
|
|
#endif
|
|
#ifdef RT_USING_MESSAGEQUEUE
|
|
{"list_mq", list_msgqueue},
|
|
#endif
|
|
#ifdef RT_USING_MEMPOOL
|
|
{"list_memp", list_mempool},
|
|
#endif
|
|
{"list_timer", list_timer},
|
|
};
|
|
struct finsh_syscall *_syscall_table_begin = &_syscall_table[0];
|
|
struct finsh_syscall *_syscall_table_end = &_syscall_table[sizeof(_syscall_table) / sizeof(struct finsh_syscall)];
|
|
|
|
struct finsh_sysvar *_sysvar_table_begin = NULL;
|
|
struct finsh_sysvar *_sysvar_table_end = NULL;
|
|
#endif
|
|
|
|
#endif /* RT_USING_FINSH */
|
|
|