Referring this link http://www.linux-usb.org/gadget/file_storage.html

I am doing this .. Step 1 : I acquire some data on beagle board on angstrom linux and send to SD Card by mounting it on Beagle Board.Now I unmount the card from beagle board and use g_file_storage usb gadget driver to mount the sd card on host.

Step2 : Now after Host acquires the data from the sd card, Then i want to remove driver from BB & mount sdcard on Beagleboard and use storage again on B.Board.

But How will the beagle board know when to Remove the gadget driver ....How do i capture usb HOST eject on BeagleBoard.

If I use beagle board as USB mass stroage device I face this problem.

I have after googling reached to these alternatives

Is there some concept of composite driver where mass storage class can be used along side say : uart interface using the same physical usb communication path to send commands from host to beagle board which can aid the above operation. Please help me if I am thinking wrong. Please suggest.

or can i capture eject event on B.Board with g_file_storage itself ...?

or

http://us.generation-nt.com/patch-mass-storage-gadget-handle-eject-request-help-197479671.html

this link talks about eject event in f_mass_storage ....but i am not getting any other document for it ..should i go for it ?

pl help with any doc supporting link ..past experience ....

i will be very thankful.

link|improve this question
feedback

1 Answer

The host eject shows up as one of two events:

  • a "SetConfiguration" request with a wValue of 0
  • power loss on the USB pins

The former can be detected easily, the latter requires hardware support.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.