forked from gary/BCU
2
0
Fork 0
BCU/library/rl_flashfs/Retarget.c

199 lines
4.9 KiB
C
Raw Normal View History

2024-11-26 15:52:49 +08:00
/*
*********************************************************************************************************
*
* ģ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> : <EFBFBD>ض<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD>
* <EFBFBD>ļ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> : Retarget.c
* <EFBFBD><EFBFBD> <EFBFBD><EFBFBD> : V1.0
* ˵ <EFBFBD><EFBFBD> : <EFBFBD><EFBFBD><EFBFBD>ض<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ĵ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ں<EFBFBD>FlashFS<EFBFBD><EFBFBD>Ҫʹ<EFBFBD>á<EFBFBD>
* 1. FlashFS<EFBFBD><EFBFBD>֧<EFBFBD><EFBFBD>ʹ<EFBFBD><EFBFBD>MDK<EFBFBD>е<EFBFBD>MicroLib<EFBFBD><EFBFBD><EFBFBD>ܣ<EFBFBD><EFBFBD><EFBFBD>ʹ<EFBFBD><EFBFBD>MicroLib<EFBFBD>Ļ<EFBFBD><EFBFBD><EFBFBD>Ĭ<EFBFBD>ϰ<EFBFBD><EFBFBD><EFBFBD>ģʽ<EFBFBD>ǿ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ģ<EFBFBD>
* <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ҫ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ض<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>֧<EFBFBD>ִ<EFBFBD><EFBFBD>ڴ<EFBFBD>ӡ<EFBFBD><EFBFBD>FlashFS<EFBFBD><EFBFBD>ʹ<EFBFBD>á<EFBFBD>
* 2. <EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>KEIL<EFBFBD>ٷ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>û<EFBFBD>ֻ<EFBFBD><EFBFBD><EFBFBD>
* extern int sendchar (int ch);
* extern int getkey (void);
* <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɣ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>bsp_uart_fifo.c<EFBFBD>ļ<EFBFBD>ʵ<EFBFBD><EFBFBD>
*
* <EFBFBD>޸ļ<EFBFBD>¼ :
* <EFBFBD><EFBFBD><EFBFBD> <EFBFBD><EFBFBD><EFBFBD><EFBFBD> <EFBFBD><EFBFBD><EFBFBD><EFBFBD> ˵<EFBFBD><EFBFBD>
* V1.0 2015-09-10 Eric2013 <EFBFBD>׷<EFBFBD>
*
* Copyright (C), 2015-2020, <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> www.armfly.com
*
*********************************************************************************************************
*/
/*----------------------------------------------------------------------------
* RL-ARM - FlashFS
*----------------------------------------------------------------------------
* Name: RETARGET.C
* Purpose: Retarget low level functions
* Rev.: V4.20
*----------------------------------------------------------------------------
* This code is part of the RealView Run-Time Library.
* Copyright (c) 2004-2011 KEIL - An ARM Company. All rights reserved.
*---------------------------------------------------------------------------*/
#include <stdio.h>
#include <string.h>
#include <rt_sys.h>
#include <File_Config.h>
#define STDIO
#pragma import(__use_no_semihosting_swi)
/* The following macro definitions may be used to translate this file:
STDIO - use standard Input/Output device
(default is NOT used)
*/
/* Standard IO device handles. */
#define STDIN 0x8001
#define STDOUT 0x8002
#define STDERR 0x8003
/* Standard IO device name defines. */
const char __stdin_name[] = "STDIN";
const char __stdout_name[] = "STDOUT";
const char __stderr_name[] = "STDERR";
struct __FILE { int handle; /* Add whatever you need here */ };
int sendchar(int ch)
{
return 0;
}
int getkey (void)
{
return 0;
}
/*--------------------------- _ttywrch --------------------------------------*/
void _ttywrch (int ch) {
#ifdef STDIO
sendchar(ch);
#endif
}
/*--------------------------- _sys_open -------------------------------------*/
FILEHANDLE _sys_open (const char *name, int openmode) {
/* Register standard Input Output devices. */
if (strcmp(name, "STDIN") == 0) {
return (STDIN);
}
if (strcmp(name, "STDOUT") == 0) {
return (STDOUT);
}
if (strcmp(name, "STDERR") == 0) {
return (STDERR);
}
return (__sys_open (name, openmode));
}
/*--------------------------- _sys_close ------------------------------------*/
int _sys_close (FILEHANDLE fh) {
if (fh > 0x8000) {
return (0);
}
return (__sys_close (fh));
}
/*--------------------------- _sys_write ------------------------------------*/
int _sys_write (FILEHANDLE fh, const U8 *buf, U32 len, int mode) {
#ifdef STDIO
if (fh == STDOUT) {
/* Standard Output device. */
for ( ; len; len--) {
sendchar (*buf++);
}
return (0);
}
#endif
if (fh > 0x8000) {
return (-1);
}
return (__sys_write (fh, buf, len));
}
/*--------------------------- _sys_read -------------------------------------*/
int _sys_read (FILEHANDLE fh, U8 *buf, U32 len, int mode) {
#ifdef STDIO
if (fh == STDIN) {
/* Standard Input device. */
for ( ; len; len--) {
*buf++ = getkey ();
}
return (0);
}
#endif
if (fh > 0x8000) {
return (-1);
}
return (__sys_read (fh, buf, len));
}
/*--------------------------- _sys_istty ------------------------------------*/
int _sys_istty (FILEHANDLE fh) {
if (fh > 0x8000) {
return (1);
}
return (0);
}
/*--------------------------- _sys_seek -------------------------------------*/
int _sys_seek (FILEHANDLE fh, long pos) {
if (fh > 0x8000) {
return (-1);
}
return (__sys_seek (fh, pos));
}
/*--------------------------- _sys_ensure -----------------------------------*/
int _sys_ensure (FILEHANDLE fh) {
if (fh > 0x8000) {
return (-1);
}
return (__sys_ensure (fh));
}
/*--------------------------- _sys_flen -------------------------------------*/
long _sys_flen (FILEHANDLE fh) {
if (fh > 0x8000) {
return (0);
}
return (__sys_flen (fh));
}
/*--------------------------- _sys_tmpnam -----------------------------------*/
int _sys_tmpnam (char *name, int sig, unsigned maxlen) {
return (1);
}
/*--------------------------- _sys_command_string ---------------------------*/
char *_sys_command_string (char *cmd, int len) {
return (cmd);
}
/*--------------------------- _sys_exit -------------------------------------*/
void _sys_exit (int return_code) {
/* Endless loop. */
while (1);
}
/*----------------------------------------------------------------------------
* end of file
*---------------------------------------------------------------------------*/