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>
81 lines
1.6 KiB
C
81 lines
1.6 KiB
C
/*
|
|
* Copyright (c) 2006-2018, RT-Thread Development Team
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2017/10/15 bernard the first version
|
|
*/
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include <rtthread.h>
|
|
#include "libc.h"
|
|
|
|
#define STDIO_DEVICE_NAME_MAX 32
|
|
|
|
int _EXFUN(fileno, (FILE *));
|
|
|
|
static FILE* std_console = NULL;
|
|
|
|
int libc_stdio_set_console(const char* device_name, int mode)
|
|
{
|
|
FILE *fp;
|
|
char name[STDIO_DEVICE_NAME_MAX];
|
|
char *file_mode;
|
|
|
|
snprintf(name, sizeof(name) - 1, "/dev/%s", device_name);
|
|
name[STDIO_DEVICE_NAME_MAX - 1] = '\0';
|
|
|
|
if (mode == O_RDWR) file_mode = "r+";
|
|
else if (mode == O_WRONLY) file_mode = "wb";
|
|
else file_mode = "rb";
|
|
|
|
fp = fopen(name, file_mode);
|
|
if (fp)
|
|
{
|
|
setvbuf(fp, NULL, _IONBF, 0);
|
|
|
|
if (std_console)
|
|
{
|
|
fclose(std_console);
|
|
std_console = NULL;
|
|
}
|
|
std_console = fp;
|
|
|
|
if (mode == O_RDWR)
|
|
{
|
|
_GLOBAL_REENT->_stdin = std_console;
|
|
}
|
|
else
|
|
{
|
|
_GLOBAL_REENT->_stdin = NULL;
|
|
}
|
|
|
|
if (mode == O_RDONLY)
|
|
{
|
|
_GLOBAL_REENT->_stdout = NULL;
|
|
_GLOBAL_REENT->_stderr = NULL;
|
|
}
|
|
else
|
|
{
|
|
_GLOBAL_REENT->_stdout = std_console;
|
|
_GLOBAL_REENT->_stderr = std_console;
|
|
}
|
|
|
|
_GLOBAL_REENT->__sdidinit = 1;
|
|
}
|
|
|
|
if (std_console) return fileno(std_console);
|
|
|
|
return -1;
|
|
}
|
|
|
|
int libc_stdio_get_console(void) {
|
|
if (std_console)
|
|
return fileno(std_console);
|
|
else
|
|
return -1;
|
|
}
|