Power off an USB device in software on Windows

空扰寡人 提交于 2019-11-26 07:37:07

问题


I would like to power cycle an USB device through software on Windows.

I am doing development on a small USB power microcontroller. This chip will revert to native behavior on a power cycle and allow a code download. Since my code will crash the device when things go wrong -- making it ignore all USB commands -- I have to physically unplug the device from the system.

I want to do development remotely, and not have to be physically present.

So far I have tried using \"devcon\" to disable portions of the USB stack. While this takes the hubs into D3 (should be powered off!), there is still power being supplied to the device.

Are there any preexisting solutions or SetupAPI tricks that might help?


回答1:


You could do with a hardware relay and controlling it via software: http://pintant.cat/2012/05/12/power-off-usb-device/ (of course, will use 2 USB ports :-) one for the device, one for the relay).




回答2:


Some USB hubs have the ability to turn power off to its downstream devices.

"Is it possible to power up ports on a USB hub from Ubuntu?" https://askubuntu.com/questions/149242/is-it-possible-to-power-up-ports-on-a-usb-hub-from-ubuntu Which points to some c source for hub-ctrl.c

See: http://www.gniibe.org/development/ac-power-control-by-USB-hub/index

I tested this on Ubuntu with a Dream-Cheeky USB LED unit, and it did seem to turn the power off - although when turned on again, the device had remembered (!) its LED on/off state ??? - This did not happen when I unplugged and repluged the USB lead to the LED...

It looks like someone has looked at compiling this for Windows, but I could not find the result, sorry.




回答3:


Since it's for development/test instead of production, I'd recommend having a solid-state_relay as part of a second device and using that to cycle the power on the USB connection.




回答4:


There is a simple solution to this on Windows if you buy this external USB hub. It has an undocumented feature that cycles power to all connected USB devices whenever the hub is "enabled" in Windows Device Manager. You can do this manually:

  1. Run "Device Manager"
  2. Expand "Universal Serial Bus controllers"
  3. Open Properties for the appropriate "Generic USB Hub"
  4. Select the "Driver" tab
  5. Click the "Disable" button
  6. Click the "Enable" button. The hub will briefly disable power output to all 4 of its USB ports, and then enable it again.

You can also do this programmatically from any Windows application that is running with administrator priveledges. Here is an example in C#.

I have successfully used this technique to cycle power to USB devices that were "locked up". It sure beats physically unplugging devices, especially on remote or unmanned PCs.




回答5:


Unfortunately, it's not possible on stock PCs.

USB host chipsets do not have the capability to fully power-down. There is some signaling that you can do in USB 2.0 or 3.0 to ask the device to go into a sleep-state, but the port will provide power even when the PC is turned off. (That's so devices like iPods and whatnot can still charge if needed.)



来源:https://stackoverflow.com/questions/404097/power-off-an-usb-device-in-software-on-windows

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!