This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Can RL_USB run together with FATFS?

Just like title show.

I just want to use FATFS_0.09 run together with rl_usb (not RL_FLASHFS).

any ideas?

or RL_FLASHFS support chinese file names??

Parents
  • Thanks Tsuneo!^_^

    system work well now! As you said!

    other question!

    (my project is STM32F207 WITH RL_USB + FATFS)

    can usb host (MSD project) read data from hard disk ( two or more logical partition)?

    set _MULTI_PARTITION == 0, just can read data from hard disk in main partition.

    set _MULTI_PARTITION == 1, use f_open to read a file, return error code

    FR_NO_FILESYSTEM,               /* (13) There is no valid FAT volume */
    

    my open file function is

    res = f_open(&fsrc, "2:/STM32.TXT", FA_OPEN_EXISTING | FA_READ);
    


    more ideas for _MULTI_PARTITION == 1??

Reply
  • Thanks Tsuneo!^_^

    system work well now! As you said!

    other question!

    (my project is STM32F207 WITH RL_USB + FATFS)

    can usb host (MSD project) read data from hard disk ( two or more logical partition)?

    set _MULTI_PARTITION == 0, just can read data from hard disk in main partition.

    set _MULTI_PARTITION == 1, use f_open to read a file, return error code

    FR_NO_FILESYSTEM,               /* (13) There is no valid FAT volume */
    

    my open file function is

    res = f_open(&fsrc, "2:/STM32.TXT", FA_OPEN_EXISTING | FA_READ);
    


    more ideas for _MULTI_PARTITION == 1??

Children