freeRTOS操作系统机器人实现
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

108 lines
2.6 KiB

3 days ago
/******************************************************************************
(C), 2018-2099, Radkil
******************************************************************************
: rd_stdio.c
: 稿
: Radkil
: 2026311
:
: IO的实现
:
1. : 2026311
: Radkil
:
******************************************************************************/
#include "rd_stdio.h"
/*----------------------------------------------*
* *
*----------------------------------------------*/
/*----------------------------------------------*
* *
*----------------------------------------------*/
/*----------------------------------------------*
* *
*----------------------------------------------*/
/*----------------------------------------------*
* *
*----------------------------------------------*/
/*----------------------------------------------*
* *
*----------------------------------------------*/
/*----------------------------------------------*
* *
*----------------------------------------------*/
/*----------------------------------------------*
* *
*----------------------------------------------*/
WEAK void *Rd_Fopen(const char *path, const char *mode)
{
return NULL;
}
WEAK void *Rd_Open(const char *path, int flags, mode_t mode)
{
return NULL;
}
WEAK ssize_t Rd_Mread(void *buf, size_t count, void *file)
{
return RD_FAILURE;
}
WEAK ssize_t Rd_Mwrite(const void *buf, size_t count, void *file)
{
return RD_FAILURE;
}
WEAK int Rd_Mclose(void *file)
{
return RD_FAILURE;
}
WEAK int Rd_Mseek(void *file, long offset, int whence)
{
return RD_FAILURE;
}
WEAK char *Rd_Mgets(char *buf, int size, void *file)
{
return NULL;
}
WEAK int Rd_Mputs(const char *str, void *file)
{
return RD_FAILURE;
}
WEAK long Rd_Mtell(void *file)
{
return RD_FAILURE;
}
WEAK int Rd_fflush(void *file)
{
return RD_FAILURE;
}
WEAK int Rd_remove(const char *filename)
{
return RD_FAILURE;
}
WEAK int Rd_rename(const char *oldpath, const char *newpath)
{
return RD_FAILURE;
}