使用f_mount读取数据并将其写入文本文件

时间:2018-10-05 10:50:13

标签: usb stm32 file-handling mmc fatfs

在我的应用程序中,我需要使用调用f_open,f_read和f_write打开,读取和写入数据到文本文件。

无法打开.txt文件

res = f_open(&f_header.file, file_path, FA_OPEN_EXISTING | FA_WRITE | FA__WRITTEN | FA_READ | FA_CREATE_NEW  );
                printf("res value after f open %d \n\r",res);
if (res != FR_OK) {
                printf("Failed to open %s, error %d\n\r", file_path, res);
    }

这给出了错误:

  

FR_NOT_ENABLED,/ *(12)该卷没有工作区* /

为解决此错误,应用程序需要在每次更改媒体以强制清除文件系统对象后执行f_mount功能。

如何在此应用程序中使用f_mount()调用来解决此问题? 我不清楚第二个参数。

我添加了此f_mount(&fs0,“ 0://”,1);解决这个问题。

在f_open调用之前。它也不同时调用f_mount()。

res=f_mount(&fs0,"0://", 1);

res = f_open(&f_header.file, file_path, FA_OPEN_EXISTING | FA_WRITE | FA__WRITTEN | FA_READ | FA_CREATE_NEW  );

->代码正在运行时在f_mount()*之前停止

这是我正在使用的f_mount的源代码:

FRESULT f_mount (
    FATFS* fs,          /* Pointer to the file system object (NULL:unmount)*/
    const TCHAR* path,  /* Logical drive number to be mounted/unmounted */
    BYTE opt            /* 0:Do not mount (delayed mount), 1:Mount immediately */
)
{
    FATFS *cfs;
    int vol;
    FRESULT res;
    const TCHAR *rp = path;
    vol = get_ldnumber(&rp);
    if (vol < 0) return FR_INVALID_DRIVE;
    cfs = FatFs[vol];                   /* Pointer to fs object */
    if (cfs) {
#if _FS_LOCK
        clear_lock(cfs);
#endif
#if _FS_REENTRANT                       /* Discard sync object of the current volume */
        if (!ff_del_syncobj(cfs->sobj)) return FR_INT_ERR;
#endif
        cfs->fs_type = 0;               /* Clear old fs object */
    }
    if (fs) {
        fs->fs_type = 0;                /* Clear new fs object */
#if _FS_REENTRANT                       /* Create sync object for the new volume */
        if (!ff_cre_syncobj((BYTE)vol, &fs->sobj)) return FR_INT_ERR;
#endif
    }
    FatFs[vol] = fs;            /* Register new fs object */
    if (!fs || opt != 1) return FR_OK;  /* Do not mount now, it will be mounted later */
    res = find_volume(&fs, &path, 0);   /* Force mounted the volume */
    LEAVE_FF(fs, res);
}
  • 代码在制作文件时未显示任何错误/警告。 我确定代码没有问题。
  • 代码没有错。 这与emmc中的内存分配或内存不足有关吗?发生这种行为的可能原因是什么。我们会尽力提供帮助。

预先致谢

1 个答案:

答案 0 :(得分:0)

根据http://elm-chan.org/fsw/ff/doc/mount.html

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: cellIdentifier, for: indexPath) as! CellClass
// Configure cell
return cell
}

换句话说,第二个参数是您以后使用它时如何引用该特定文件系统。

例如,将其安装如下:

FRESULT f_mount (
  FATFS*       fs,    /* [IN] Filesystem object */
  const TCHAR* path,  /* [IN] Logical drive number */
  BYTE         opt    /* [IN] Initialization option */
);

Parameters
  fs
    Pointer to the filesystem object to be registered and cleared. Null pointer unregisters the registered filesystem object.
  path
    Pointer to the null-terminated string that specifies the logical drive. The string without drive number means the default drive.
  opt
    Mounting option. 0: Do not mount now (to be mounted on the first access to the volume), 1: Force mounted the volume to check if it is ready to work.

您将能够打开这样的文件:

f_mount(&fs0, "0://", 1);