Skip to main content
hilogicsys
Associate
July 5, 2015
Question

stm32 based usb to sdcard file copier

  • July 5, 2015
  • 4 replies
  • 1294 views
Posted on July 05, 2015 at 14:26

Hi friends, looking for any project based on STM32F105 which can copy (Transfer) files from USB stick to On board SD card repeatedly. May be such a device can be used to batch copy files from USB stick to SD card without any Computer.

    This topic has been closed for replies.

    4 replies

    Tesla DeLorean
    Guru
    July 5, 2015
    Posted on July 05, 2015 at 15:10

    Probably wouldn't do it with the F105, given the choice.

    The STM32F4-DISCO has code examples for USB-MSC reader, there's SDIO code, and FATFS implementation. To clone/copy a card you'd need to write some code to enumerate the files/sub-directories and copy/create them one at a time between the media.

    Tips, Buy me a coffee, or three.. PayPal Venmo (See Profile) Up vote any posts that you find helpful, it shows what's working..
    hilogicsys
    Associate
    July 5, 2015
    Posted on July 05, 2015 at 22:25

    Hi clive1,

    why not STM32F105 as it USB FS Core and Native SDIO interface with DMA Support.

    Tesla DeLorean
    Guru
    July 5, 2015
    Posted on July 06, 2015 at 01:36

    You can build your project with whatever part you want.

    I think there are other parts, which are faster, have more memory, and more available/working code.

    Tips, Buy me a coffee, or three.. PayPal Venmo (See Profile) Up vote any posts that you find helpful, it shows what's working..
    hilogicsys
    Associate
    July 6, 2015
    Posted on July 06, 2015 at 10:48

    Ok, i will try to implement the concept with STM32F105 (Cheapest one with USB FS host & SDIO).