/********************************************************************************************************* ** 以下为一些与系统相关的库函数的实现 ** 具体作用请ads的参考编译器与库函数手册 ** 用户可以根据自己的要求修改 ********************************************************************************************************/ /********************************************************************************************************* ** The implementations for some library functions ** For more details, please refer to the ADS compiler handbook and The library ** function manual ** User could change it as needed ********************************************************************************************************/ //#include "rt_sys.h" //#include "stdio.h"
char *_sys_command_string(char * cmd, int len) { cmd = cmd; len = len; return 0; }
/********************************************************************************************************* ** End Of File ********************************************************************************************************/