Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm sorry if this is similar to an earlier question but this is something I just noticed. I can detect when my device is attached to the system (via usb) and trap the message correctly however if I unplug and plug the device back, attempting to access the device via the CreateFile() function always returns an error: ERROR_GEN_FAILURE 31 (0x1F) which translates to -A device attached to the system is not functioning, this is however, attempted after recieving the DBT_DEVICEARRIVAL message which by microsoft's own definition says "A device or piece of media has been inserted and is now available". I believe what's going on here is that the error has more to do with the device not being ready even though it's reported as being ready because if I re-enumerate the list of devices on the system again, the device is ready. Has anyone else encountered and gotten past this problem? Or is there something I'm missing/overlooking?

share|improve this question
You might want to give a clue as to what OS you are talking about - it sounds like some version of Windows, but who knows ? (Hint: tags are useful here) – Paul R Aug 4 '10 at 15:42
I'm on Windows 7 32bit – Dark Star1 Aug 4 '10 at 15:46
1  
Does it work as expected if you don't unplug and reconnect? It sounds like you're trying to work with the old reference, when really you need a new one any time the device is reattached. – Jay Aug 4 '10 at 17:04
@Jay You maybe onto something here. I'll look into it and repost if I solve it – Dark Star1 Aug 5 '10 at 7:28
@Jay Everything is fine when enumerated if plugged in. Also when I plug and unplug If I re-enumerate the list of system devices it works fine. – Dark Star1 Aug 5 '10 at 7:50
show 1 more comment

1 Answer

up vote 0 down vote accepted

The simplest way to deal with this, IMO, is through WMI.

See here: http://dotnetslackers.com/community/blogs/basharkokash/archive/2008/02/06/usb-port-insert-remove-detection-using-wmi.aspx

I have used WMI in the past for USB drive detection and it is dead simple and the callback makes things pretty clean

share|improve this answer
Apologies I know nothing of WMI – Dark Star1 Aug 5 '10 at 7:50
Yeah, neither did I the first time I tired it. However, take a look at the article I posted. It is simple. – Brad Cunningham Aug 5 '10 at 17:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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