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>
48 lines
1020 B
C
48 lines
1020 B
C
/*
|
|
* Copyright (c) 2006-2018, RT-Thread Development Team
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2013-06-26 Grissiom the first version
|
|
*/
|
|
|
|
#include <rtthread.h>
|
|
#include <rtdevice.h>
|
|
#include <log_trace.h>
|
|
|
|
#define PIPE_SZ 2048
|
|
#define PIPE_NAME "memlog"
|
|
|
|
static rt_pipe_t *_log_pipe = NULL;
|
|
static rt_uint8_t outbuf[1024];
|
|
void memlog_flush(void)
|
|
{
|
|
rt_size_t readsz;
|
|
rt_device_t console;
|
|
|
|
console = rt_console_get_device();
|
|
if (!console) return;
|
|
|
|
readsz = rt_device_read((rt_device_t)&(_log_pipe->parent), 0, outbuf, sizeof(outbuf));
|
|
if (readsz)
|
|
rt_device_write(console, 0, outbuf, readsz);
|
|
}
|
|
|
|
int memlog_init(void)
|
|
{
|
|
_log_pipe = rt_pipe_create(PIPE_NAME, PIPE_SZ);
|
|
if (_log_pipe == RT_NULL)
|
|
{
|
|
rt_kprintf("init pipe device failed.\n");
|
|
return -1;
|
|
}
|
|
|
|
log_trace_set_device(PIPE_NAME);
|
|
rt_thread_idle_sethook(memlog_flush);
|
|
|
|
return 0;
|
|
}
|
|
INIT_APP_EXPORT(memlog_init);
|