Click here to Skip to main content
15,901,505 members

Welcome to the Lounge

   

For discussing anything related to a software developer's life but is not for programming questions. Got a programming question?

The Lounge is rated Safe For Work. If you're about to post something inappropriate for a shared office environment, then don't post it. No ads, no abuse, and no programming questions. Trolling, (political, climate, religious or whatever) will result in your account being removed.

 
GeneralRe: Does anyone know how to talk to a memory stick? Pin
Dan Neely4-Dec-19 4:51
Dan Neely4-Dec-19 4:51 
GeneralRe: Does anyone know how to talk to a memory stick? Pin
CodeWraith4-Dec-19 6:06
CodeWraith4-Dec-19 6:06 
GeneralRe: Does anyone know how to talk to a memory stick? Pin
#realJSOP4-Dec-19 4:05
professional#realJSOP4-Dec-19 4:05 
GeneralRe: Does anyone know how to talk to a memory stick? Pin
CodeWraith4-Dec-19 5:33
CodeWraith4-Dec-19 5:33 
GeneralRe: Does anyone know how to talk to a memory stick? Pin
Richard Andrew x644-Dec-19 12:00
professionalRichard Andrew x644-Dec-19 12:00 
GeneralRe: Does anyone know how to talk to a memory stick? Pin
CodeWraith4-Dec-19 13:20
CodeWraith4-Dec-19 13:20 
GeneralRe: Does anyone know how to talk to a memory stick? Pin
Jacquers4-Dec-19 20:59
Jacquers4-Dec-19 20:59 
GeneralRe: Does anyone know how to talk to a memory stick? Pin
Igor Coretti4-Dec-19 21:52
Igor Coretti4-Dec-19 21:52 
The device in the link is something very different than what you are looking for.
Remember that USB has devices with Master role; tose are usally the hosts that initate and manage all the comunication on the bus. Then there are Slave devices that respond to master's requests and send out data in an orderly manner, when instructed to do so.
The device you are referring is of the latter type; it can only reply to a host requests and it can't talk to other USB devices. What you want to implement is a master node.
As you may have understood, the master has very complex tasks to accomplish, since the USB bus is a Plug 'n play thing. One of the first things the master has to do is to enumerate the devices that are on the bus, and it has to do it dynamically, since a device can be added at any time. Then it has to manage the configuration of the device (if needed) and then set up the comunication. Things gets soon very complicated even for a simple comunication with a mass storage. In this case, after the USB 'low level' protocol, you will have to deal also with the "Mass storage" layer.
All I remember is that on the Microchip knowledge base there was some application note with a very simple implementation of basic usb protocol master made to be run on a their smallest microcontrollers, but i regret to say that I don't have any link to it anymore.
Whatever you do, it will be a huge work, and probably lot of fun Wink | ;-) . Good luck !
GeneralRe: Does anyone know how to talk to a memory stick? Pin
kalberts4-Dec-19 22:58
kalberts4-Dec-19 22:58 
GeneralRe: Does anyone know how to talk to a memory stick? Pin
Gary Wheeler5-Dec-19 1:58
Gary Wheeler5-Dec-19 1:58 
GeneralRe: Does anyone know how to talk to a memory stick? Pin
Tim Kirk5-Dec-19 3:20
Tim Kirk5-Dec-19 3:20 
GeneralRe: Does anyone know how to talk to a memory stick? Pin
FredWah5-Dec-19 11:07
FredWah5-Dec-19 11:07 
GeneralRe: Does anyone know how to talk to a memory stick? Pin
rjmoses5-Dec-19 12:51
professionalrjmoses5-Dec-19 12:51 
GeneralRe: Does anyone know how to talk to a memory stick? Pin
ACRowland5-Dec-19 23:17
ACRowland5-Dec-19 23:17 
GeneralRe: Does anyone know how to talk to a memory stick? Pin
bence9810-Dec-19 6:52
bence9810-Dec-19 6:52 
GeneralRe: Does anyone know how to talk to a memory stick? Pin
CodeWraith10-Dec-19 8:13
CodeWraith10-Dec-19 8:13 
JokeSometimes I Wonder .... Pin
Cp-Coder3-Dec-19 23:52
Cp-Coder3-Dec-19 23:52 
GeneralRe: Sometimes I Wonder .... Pin
honey the codewitch4-Dec-19 0:12
mvahoney the codewitch4-Dec-19 0:12 
GeneralRe: Sometimes I Wonder .... Pin
Cp-Coder4-Dec-19 0:14
Cp-Coder4-Dec-19 0:14 
GeneralRe: Sometimes I Wonder .... Pin
honey the codewitch4-Dec-19 0:24
mvahoney the codewitch4-Dec-19 0:24 
GeneralRe: Sometimes I Wonder .... Pin
Dan Neely4-Dec-19 4:52
Dan Neely4-Dec-19 4:52 
GeneralRe: Sometimes I Wonder .... Pin
Amarnath S4-Dec-19 0:21
professionalAmarnath S4-Dec-19 0:21 
GeneralRe: Sometimes I Wonder .... Pin
Cp-Coder4-Dec-19 0:25
Cp-Coder4-Dec-19 0:25 
GeneralRe: Sometimes I Wonder .... Pin
CodeWraith4-Dec-19 0:28
CodeWraith4-Dec-19 0:28 
GeneralRe: Sometimes I Wonder .... Pin
Amarnath S4-Dec-19 2:13
professionalAmarnath S4-Dec-19 2:13 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.