cancel
Showing results for 
Search instead for 
Did you mean: 

stm32 based usb to sdcard file copier

hilogicsys
Associate II
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.

4 REPLIES 4
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
Up vote any posts that you find helpful, it shows what's working..
hilogicsys
Associate II
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.

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
Up vote any posts that you find helpful, it shows what's working..
hilogicsys
Associate II
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).