views:

349

answers:

2

I had a look at this and this but no one sounded particularly sure of their ideas and I'm kind of after a different thing anyway. I want to hook my usb power cables (red and black) up to my phone so I don't have to use a battery (the battery is dead anyway and this is just an experiment). The problem is that USB standards ensure that a minimum of 4.35V is supplied, when I only want 3.7V. Does anyone know for sure that you can or cannot regulate power output programmatically? Some other queries I have are: What kind of power does the sleep mode provide? And what would I need to code something in to play with this, C++?

+3  A: 

No, you won't find a computer that allows you to set this voltage in software. It would break the USB specification.

You can get 150mA by default, and 500mA if your USB device negotiates it with the computer (requiring a little bit of logic in the device). Multiply by 5V to get the provided power.

Pascal Cuoq
A: 

A bit more info on the answer from Pascal:

  1. The normal operation (Non-Configured mode) is 100mA

  2. In theory, the operating system should check the MaxPower value of the device's configuration descriptor to decide if to allow it to draw more than 100mA. In practice, PCs do not do it (and have no way to control it). So you can try taking 500mA. (Of course connecting a bus powered hub and linking more then one 500mA device, should, not work.)

  3. If the device is not actively used, the OS may (and should) suspend it. When suspended the power is limited to 1-0.5mA (Again, in theory, since it can not be controlled by software).

Murkin