Lines Matching refs:file_path
196 static rt_err_t rym_download_file(rt_device_t idev,const char *file_path) in rym_download_file() argument
207 rt_strncpy(ctx->fpath, file_path, DFS_PATH_MAX); in rym_download_file()
216 static rt_err_t rym_upload_file(rt_device_t idev, const char *file_path) in rym_upload_file() argument
227 rt_strncpy(ctx->fpath, file_path, DFS_PATH_MAX); in rym_upload_file()
245 const char *file_path; in ry() local
260 file_path = argv[1]; in ry()
261 res = rym_download_file(dev,file_path); in ry()
265 MSH_CMD_EXPORT(ry, YMODEM Receive e.g: ry file_path [uart0] default by console.);
271 const char *file_path; in sy() local
289 file_path = argv[1]; in sy()
290 res = rym_upload_file(dev, file_path); in sy()
294 MSH_CMD_EXPORT(sy, YMODEM Send e.g: sy file_path [uart0] default by console.);