Slashdot Mirror


Handset Vendors Plug Micro-USB Charge Ports

ketan324 points to a Register story touting an agreement among several phone makers to settle on Micro USB for their phones' charging ports, writing "It's about time for these cellphone manufacturers to wise up and design a universal phone charger. Although many manufacturers have already 'standardized' to a mini-USB interface, there are many more out there who use proprietary adapters. I wonder how Apple will feel about this? Will they finally realize that their oh-so-special adapter is nothing more than a fudged USB interface?" No legislation required.

363 comments

  1. And why the hell do I need a driver for this? by Anonymous Coward · · Score: 4, Insightful

    I have working USB on my computer. Why the hell do I need to install a Motorola XP driver to charge my RAZR?

    1. Re:And why the hell do I need a driver for this? by Ed+Avis · · Score: 5, Informative

      Often the standard USB current isn't enough to charge a device, so you must install a driver which does nothing more than increase the USB power output.

      --
      -- Ed Avis ed@membled.com
    2. Re:And why the hell do I need a driver for this? by wiredog · · Score: 0

      Voltages. The driver has to tell the computer what voltages it uses. It's from the USB spec,IIRC.

    3. Re:And why the hell do I need a driver for this? by corsec67 · · Score: 2, Interesting

      Why the hell do I need to install a Motorola XP driver to charge my RAZR?

      Maybe Windows leaves sending the "You can take up to 500mA" signal to the driver for the device?

      --
      If I have nothing to hide, don't search me
    4. Re:And why the hell do I need a driver for this? by jandrese · · Score: 2, Informative

      Because of the way USB is designed. If your device does not get attached to a driver, it is stuck on low power mode, which is not sufficient for charging a phone. When a driver is attached, the driver can ramp the port up into high power mode and charge the phone. Often times if you know what you're doing you can avoid installing the whole "driver suite" and the crappy apps you don't want and instead just copy over a .dll file to let your computer charge the phone. Google is your friend in these cases.

      --

      I read the internet for the articles.
    5. Re:And why the hell do I need a driver for this? by corsec67 · · Score: 4, Informative

      Voltages. The driver has to tell the computer what voltages it uses. It's from the USB spec,IIRC.

      No, USB Vcc is +5 volts.

      Per the USB spec, the device isn't supposed to draw more than 100mA from the port without authorization from the computer.

      --
      If I have nothing to hide, don't search me
    6. Re:And why the hell do I need a driver for this? by DirtySouthAfrican · · Score: 1

      Weird. I plugged my KRZR into my monitor and it charged just fine. Only later did I install drivers to get mass storage to work.

    7. Re:And why the hell do I need a driver for this? by Hal_Porter · · Score: 3, Interesting

      Actually I worked for a company that made things that charge of USB once and I talked to the person who decided such things. He explained the "not allowed to draw more the 100mA before enumeration" rationale. I showed him my USB hard disk. It has two plugs, one of which is just to leach power, so it manages to draw 500mA from each plug. And actually most USB widgets are dumb - no microcontroller - and draw more than 100mA. And I've never seen them fail to work on any USB host.

      I couldn't convince him to make the device charge without a driver though, even though enforcing the spec like this probably just pisses people off. Actually it's worse than that, there are wallwarts that supply 5V (often at 1000mA or more) to a USB connection but don't have a USB host. Devices that refuse to charge before enumeration won't work with those either.

      Actually I think there's an argument for drawing power off the bus, and only limiting current such that the 5V line stays in spec, i.e 5V±5%. That way you could safely draw more than 500mA from a USB wallwart which could supply it but did not enumerate.

      --
      echo -e 'global _start\n _start:\n mov eax, 2\n int 80h\n jmp _start' > a.asm; nasm a.asm -f elf; ld a.o -o a;
    8. Re:And why the hell do I need a driver for this? by damaki · · Score: 5, Interesting

      Because that when the device is not identified by the OS, the power output is capped to 100mA. When identified, it can go up to 500mA.
      The evident solution would be to use a standard passive driver.

      --
      Stupidity is the root of all evil.
    9. Re:And why the hell do I need a driver for this? by swillden · · Score: 5, Funny

      I have working USB on my computer. Why the hell do I need to install a Motorola XP driver to charge my RAZR?

      Because Windows sucks.

      You didn't expect a different answer from slashdot, did you? ;-)

      --
      Note to ACs: I usually delete AC replies without reading them. If you want to talk to me, log in.
    10. Re:And why the hell do I need a driver for this? by morgan_greywolf · · Score: 3, Interesting

      Nonsense. I have been able to charge both my previous phone (Motorola RAZR) and my current phone (LG Rumor) from my Ubuntu-powered PC, no drivers necessary. (Posted from my Rumor, BTW.)

    11. Re:And why the hell do I need a driver for this? by Rog-Mahal · · Score: 1

      How would this work with a Linux machine? Would the inability to install the driver result in not being able to charge the phone?

    12. Re:And why the hell do I need a driver for this? by Yetihehe · · Score: 1

      You don't need driver on linux. On the same laptop on windows - razr needs driver. On linux - just works. (it's only for charging though, I didn't even tried syncing).

      --
      Extreme Programming - Redundant Array of Inexpensive Developers
    13. Re:And why the hell do I need a driver for this? by compro01 · · Score: 1

      This seems to be a case of de facto functionality, as I have numerous such things that will draw more than the 100mA limit, like my laptop's cooling pad, which draws about 400mA, and the data lines on that are just left open, so there's definitely no driver getting involved.

      --
      upon the advice of my lawyer, i have no sig at this time
    14. Re:And why the hell do I need a driver for this? by corsec67 · · Score: 4, Informative

      In Linux, it seems like the power negotiation is part of the USB driver, not the specific device driver, since every device should do that the same way.

      (So, even if there is NO Linux driver, or with the driver not loaded, the power negotiations can occur)

      Which is a good idea, really.

      --
      If I have nothing to hide, don't search me
    15. Re:And why the hell do I need a driver for this? by chikanamakalaka · · Score: 1

      It works great on my Linux machine. Driver is already there.

    16. Re:And why the hell do I need a driver for this? by Anonymous Coward · · Score: 1, Insightful

      Yeah, and you don't have to install webcam drivers either. Linux (and Ubuntu especially) has put a lot of effort into making hardware compatibility automatic. MS has no stigma to worry about on this front, so they are unsurprisingly lagging behind in this ease of use comparison.

    17. Re:And why the hell do I need a driver for this? by morgan_greywolf · · Score: 1

      See my other post in this thread, but in a word, no. At least not on Ubuntu 7.04 and later.

    18. Re:And why the hell do I need a driver for this? by Anonymous Coward · · Score: 2, Informative

      If your phone identifies itself as a USB Storage device, it can raise the power without its own driver, since it is recognized by the USB mass storage driver.

    19. Re:And why the hell do I need a driver for this? by Otto · · Score: 1

      Your monitor has a self-powered USB hub built into it, and the phone is designed to charge whenever it has enough power coming to it. The monitor gives it that much, so it charges, no drivers needed.

      A USB port on the computer acts differently than a port on a hub.

      --
      - Give a man a fire and he's warm for a day, but set him on fire and he's warm for the rest of his life.
    20. Re:And why the hell do I need a driver for this? by MiniMike · · Score: 1

      My Sprint RAZR also will not charge from a computer unless I install a driver. The driver is only for windows, it will not charge when connected to a Linux (Fedora, haven't tried charging on Ubuntu) machine. It also will not charge from generic wall plug to USB power converters, or from 12V to USB converters, only from the Motorola branded charger. Either Sprint or Motorola has screwed with these, or they had a revision or two that don't charge properly. They screwed with the USB and Bluetooth connectivity so they don't work properly, so I assumed they had done "something" to disable recharging over the USB port unless it finds something from Motorola providing the charge. Makes me want to drop Sprint and Motorola next time I look for a phone.

    21. Re:And why the hell do I need a driver for this? by denis-The-menace · · Score: 1

      I did this with my KRZR K1m and it recognized it as a KRZR and about 1 minute later it started to charge.

      No Data, though. (Another battle for later...)

      --
      Obama's legacy: (N)othing (S)ecure (A)nywhere and (T)error (S)imulation (A)dministration
    22. Re:And why the hell do I need a driver for this? by AnonGCB · · Score: 1

      This sounds somewhat horribly wrong, mind sourcing this? I was under the impression that USB always output 5v, maximum of 500 mAmps.

      --
      http://CryoLANparty.com/ A lan I'm staff on!
    23. Re:And why the hell do I need a driver for this? by Otto · · Score: 1

      Most USB devices I've seen will charge whenever they detect enough power on the line to allow them to do it. Like anything coming at them higher than 100mA triggers them into charge mode. This is because many self-powered hubs will throw 500mA at everything regardless of enumeration, so charging on-demand makes more sense. Of course, the driver is needed for a machine to kick out more than 100mA on a port, but not all ports require that, so it's best to charge whenever you can.

      --
      - Give a man a fire and he's warm for a day, but set him on fire and he's warm for the rest of his life.
    24. Re:And why the hell do I need a driver for this? by Anonymous Coward · · Score: 0, Troll

      There will be an ioctl to the usb driver to control the power output... then some slashdot weenie will write a small gtk app with a slider you can dock on your tool bar to adjust the power output up and down, and then yet another group of slashdotters will put a wiki together documenting the correcet power settings for every cellphone ever made, even ones not capable of usb charging, just in case you wanted to mod your old motorola.

    25. Re:And why the hell do I need a driver for this? by commodore64_love · · Score: 0, Flamebait

      >>>Often the standard USB current isn't enough to charge

      (cough) bullshit (ahem). 100 mA times 5 hours == fully-charged battery in my Nokia phone. You don't need a lot of current to charge these tiny batteries.

      --
      "I disapprove of what you say, but I will defend to the death your right to say it." - historian Evelyn Beatrice Hall
    26. Re:And why the hell do I need a driver for this? by Hal_Porter · · Score: 2, Informative

      The USB device driver does a Set Configuration

      And the max power (in specified in milliamps, freakin' software engineers) is part of the configuration descriptor.

      http://www.beyondlogic.org/usbnutshell/usb5.htm#ConfigurationDescriptors

      So the spec says you can draw upto 100mA until it gets a SET_CONFIGURATION request, and that is done by the device driver.

      --
      echo -e 'global _start\n _start:\n mov eax, 2\n int 80h\n jmp _start' > a.asm; nasm a.asm -f elf; ld a.o -o a;
    27. Re:And why the hell do I need a driver for this? by ArhcAngel · · Score: 1

      This answers many of my questions like why my RIM BB wallwart with the female USB A connector will charge most of my gadgets but not my Ipod Touch. It also explains why my old BB 7320 didn't need a driver to charge and my Curve 8310 does.

      --
      "A person is smart. People are dumb, panicky dangerous animals and you know it." - K
    28. Re:And why the hell do I need a driver for this? by morgan_greywolf · · Score: 1

      If you don't want to drop your Sprint contract, dump the Motorola and get a Rumor. Rumor's don't support EVDO but they do use CDMA 3000.

    29. Re:And why the hell do I need a driver for this? by Anonymous Coward · · Score: 3, Informative

      Because of the way Microsoft's USB stack is designed. If your device does not get attached to a driver, it is stuck on low power mode, which is not sufficient for charging a phone.

      There, fixed that for ya.

      USB RFC standards lay out the process for increasing output current of a USB port, which should be a passive process. The USB device must simply apply a specific resistance across the USB pins to 'ask' the USB port to go into 'high power' mode. Whether the hardware or software vendor complies is a different story, but I've never had an issue charging high-power USB devices in linux.

    30. Re:And why the hell do I need a driver for this? by commodore64_love · · Score: 1, Insightful

      My Best Buy/Insignia MP3 player doesn't have a driver, and yet it still manages to charge in every USB port I've ever tried - home PC, work PC, home laptop, even my LCD screen (which is a dumb gadget not attached to anything).

      --
      "I disapprove of what you say, but I will defend to the death your right to say it." - historian Evelyn Beatrice Hall
    31. Re:And why the hell do I need a driver for this? by Why2K · · Score: 5, Informative
      From the USB standard, section 7.2.1 (emphasis mine):

      A unit load is defined to be 100mA. The number of unit loads a device can draw is an absolute maximum, not an average over time. A device may be either low-power at one unit load or high-power, consuming up to five unit loads. All devices default to low-power. The transition to high-power is under software control. It is the responsibility of software to ensure adequate power is available before allowing devices to consume high-power.

    32. Re:And why the hell do I need a driver for this? by Anonymous Coward · · Score: 0

      Let me rephrase the parent post for you.

      Often the standard USB current on windows isn't enough to charge a device, so you must install a windows driver which does nothing more than increase the USB power output.

      Clarify things for you?

    33. Re:And why the hell do I need a driver for this? by SydShamino · · Score: 1

      I have my iPod touch plugged into my computer right now. I don't sync it at work, I didn't let it set up a driver, and I'm just hanging it there to charge.

      It charged just fine in about an hour. I don't see the problem. It's not that much different than an iPhone.

      --
      It doesn't hurt to be nice.
    34. Re:And why the hell do I need a driver for this? by itlurksbeneath · · Score: 1

      Still.. Even if I have to buy a wall wart to get enough current to charge, I only have to buy one charger for the house and car and I can charge my future Nokia, wife's future Samsung, kids future phones, etc..

      --
      Have you ever considered piracy? You'd make a wonderful Dread Pirate Roberts.
    35. Re:And why the hell do I need a driver for this? by Ed+Avis · · Score: 1

      Your Nokia phone is not the only USB device that exists. Many models of Blackberry, for example, cannot charge using the standard USB current (at least not if switched on at the same time).

      --
      -- Ed Avis ed@membled.com
    36. Re:And why the hell do I need a driver for this? by damaki · · Score: 4, Informative

      It's not about not charging, it's about charging slowly.

      --
      Stupidity is the root of all evil.
    37. Re:And why the hell do I need a driver for this? by RulerOf · · Score: 1

      It also will not charge from generic wall plug to USB power converters, or from 12V to USB converters, only from the Motorola branded charger.

      Though I've got no actual hard evidence to back it up, I seriously believe there's some sort of ultra-cheap DRM built into the chargers and phones to prevent you from buying reasonably priced travel/home replacement chargers.

      I used to love Motorola phones because I used to have a Motorola E815. After you hacked the limitations (which were imposed by Verizon) off of the phone, it had more features than some smartphones did....

      At least they're still better than the crap produced by LG, but not by much :P

      --
      Boot Windows, Linux, and ESX over the network for free.
    38. Re:And why the hell do I need a driver for this? by xouumalperxe · · Score: 2, Interesting

      My guess is that your MP3 player is showing up as a bog standard HDD unit, which is then treated as a fully identified device. The devices that need drivers are the ones that want to show up as something else that would require drivers to actually work properly (not just charge). I guess that's a reasonably smart behaviour that prevents some burnt devices. Your dumb LCD screen USB port probably couldn't care less about what's connected to it, so it gives juice to whatever asks for it.

    39. Re:And why the hell do I need a driver for this? by frieko · · Score: 4, Informative

      Clearly Motorola is either (a) being careful to comply fully with the USB spec, or (b) being dicks.

      I would say there's about a 50/50 chance of each.

    40. Re:And why the hell do I need a driver for this? by commodore64_love · · Score: 1

      >>>it is stuck on low power mode, which is not sufficient for charging a phone.

      You're the second person to post this myth. A battery doesn't need a lot of current. My Nokia phone's battery charges from empty-to-full in just 5 hours at 100 mA. You claim that's "not sufficient" but clearly it can be done. My MP3 player only need 1 1/2 hours.

      --
      "I disapprove of what you say, but I will defend to the death your right to say it." - historian Evelyn Beatrice Hall
    41. Re:And why the hell do I need a driver for this? by Obfuscant · · Score: 1
      Though I've got no actual hard evidence to back it up, I seriously believe there's some sort of ultra-cheap DRM built into the chargers and phones to prevent you from buying reasonably priced travel/home replacement chargers.

      I have a Moto W490. The charging light does not come on when I plug it into one of the two USB wall-wart chargers I have, but it does for the other. Neither is the Moto charger, which does also light the charging light.

      It APPEARS that the difference is that some USB chargers put out 5.2 volts instead of 5. The phone likes 5.2V. It doesn't appear to like the 5V, but I think it is charging ok anyway. I've never run it down far enough to know for sure, so I can't swear that it does.

      Everything else I charge on both warts charges ok, so I just swap the two if the green light on the phone doesn't come on.

    42. Re:And why the hell do I need a driver for this? by Hal_Porter · · Score: 2, Informative

      Actually I think there's an argument for drawing power off the bus, and only limiting current such that the 5V line stays in spec, i.e 5V±5%. That way you could safely draw more than 500mA from a USB wallwart which could supply it but did not enumerate.

      Hmm, it turns out there is a standard way to detect wallwarts

      http://www.usb.org/developers/devclass_docs/batt_charging_1_0.zip

      Basically host chargers short D+ and D-. If a device detects this it can draw a higher current.

      --
      echo -e 'global _start\n _start:\n mov eax, 2\n int 80h\n jmp _start' > a.asm; nasm a.asm -f elf; ld a.o -o a;
    43. Re:And why the hell do I need a driver for this? by KibibyteBrain · · Score: 1

      As an MSEE student, I find this thread painful. I'm not even going to try to get into it, save vaguely mentioning that voltage and current are not unrelated when it comes to a voltage source.

    44. Re:And why the hell do I need a driver for this? by AnonGCB · · Score: 1

      Thank you very much!

      --
      http://CryoLANparty.com/ A lan I'm staff on!
    45. Re:And why the hell do I need a driver for this? by compro01 · · Score: 1

      AFAICT, most Linux distros (or maybe it's integrated into the kernel) have a generic "act like a dumb charger" driver for that case.

      --
      upon the advice of my lawyer, i have no sig at this time
    46. Re:And why the hell do I need a driver for this? by Anonymous Coward · · Score: 0

      So that they can charge you for charge your phone.

      (You "need" the expensive version of their sync suite to charge over USB. Useing the driver that float's around the EvilNet is piracy-charging(tm))

    47. Re:And why the hell do I need a driver for this? by Hal_Porter · · Score: 1

      The iPod Touch will charge from a wallwart if it sees the right voltages on both D+ and D-

      http://tzywen.com/modules.php?name=News&file=article&sid=696

      This is totally non standard of course, essentially Apple have their own way of detecting an official Apple USB charger, or more to the point not working with a standard one.

      --
      echo -e 'global _start\n _start:\n mov eax, 2\n int 80h\n jmp _start' > a.asm; nasm a.asm -f elf; ld a.o -o a;
    48. Re:And why the hell do I need a driver for this? by pak9rabid · · Score: 1

      I have working USB on my computer. Why the hell do I need to install a Motorola XP driver to charge my RAZR?

      I've always wondered that myself, as it seems to charge just fine in Linux when I plug it in with no extraneous software.

    49. Re:And why the hell do I need a driver for this? by PitaBred · · Score: 4, Insightful

      Windows USB functionality is severely backwards... why is my damn phone a different device when I plug it into a different USB port? Does the port address somehow magically make it behave differently? Can you tell that it's annoying having to plug every new device into every single port on my computer and installing the driver so that I don't have to worry about that when I actually want to use the device?

      Glad I only use Windows for gaming and to update my Blackberry's software.

    50. Re:And why the hell do I need a driver for this? by torkus · · Score: 2, Insightful

      Seeing as how their phones don't like to charge with a plain-jane blackberry wall-wart I'm going to lean towards the phallic choice you suggest.

      Try explaining to a secretary why the "right charger" - 'look, it fits' won't charge her VP's phone when it clearly works 'it just charged his blackberry!'

      Ugh...

      --
      You can get rich if you own a politician, but you have to be rich to buy one in the first place.
    51. Re:And why the hell do I need a driver for this? by Annorax · · Score: 2, Informative

      I vote for (b), since they don't provide their special power adapting drivers for OS X. In my case, it's the same issue with their W385 phones -- no driver -- no charging.

    52. Re:And why the hell do I need a driver for this? by Annorax · · Score: 1

      Makes me want to drop Sprint and Motorola next time I look for a phone.

      It's Motorola, since I have the same issue with my Verizon W385 phone.

    53. Re:And why the hell do I need a driver for this? by torkus · · Score: 1

      Yep. And the funny part is the first blackberry to start that nonsense of requiring a driver to charge was the blackberry pearl...which had a SMALLER battery that it's predecessors!

      --
      You can get rich if you own a politician, but you have to be rich to buy one in the first place.
    54. Re:And why the hell do I need a driver for this? by RulerOf · · Score: 1

      FWIW, the same phone I used to come to my non-scientific conclusion charged just fine after installing drivers when plugged into a machine running Windows... and I doubt that driver could force the USB port to supply 5.2v.

      Interesting though.

      --
      Boot Windows, Linux, and ESX over the network for free.
    55. Re:And why the hell do I need a driver for this? by KuNgFo0 · · Score: 1

      I have a Motorola V3 RAZR and it charges fine via USB with no drivers required. It's a T-Mobile version, I'm guessing yours would be from Verizon or a company that cripples their phones on purpose.

    56. Re:And why the hell do I need a driver for this? by Anonymous Coward · · Score: 1, Interesting

      Although the standard says that it's capped to 100mA, in reality you can pull 500mA from modern computers without any port shutdown. I've verified this with a power resistor on a good number of machines. The only one that balked was my CF27 toughbook running Win2k

    57. Re:And why the hell do I need a driver for this? by afidel · · Score: 1

      Dude, just because your phone has a small battery and sips power doesn't mean every device made does. My Blackberry's standard battery is 1400mah and with everything turned on can pull more than 100ma so low power will never charge it. Your MP3 player probably shows up as a standard mass storage device and so gets 500ma.

      --
      There are 4 boxes to use in the defense of liberty: soap, ballot, jury, ammo. Use in that order. Starting now.
    58. Re:And why the hell do I need a driver for this? by 2short · · Score: 2, Informative

      Which is a lovely spec, but it's fiction.

      All sorts of devices pull whatever power they can get regardless. It's so common that a port that doesn't supply 500mA regardless of enumeration must be considered de-facto defective.

      It may adhere to the spec, but if half the stuff made with the right plug on the end doesn't work when you plug it in, no consumer will care. And in fact, pretty much every USB port you find will happily supply 500mA to anything you stick across the relevant pins.

      As for the RAZR, I assume the driver supports other functions, it really ought work as some generic 500mA consuming device for just charging.

    59. Re:And why the hell do I need a driver for this? by jandrese · · Score: 1

      Depends on what kind of phone. I could charge my Blackberry Pearl off of the low power mode, but it literally took all night. Installing the driver let it charge in about 15-30 minutes, depending on how far I ran it down. The phone even put up a warning message that the charging current wasn't sufficient if you tried. For something like an iPhone I suspect it would take hours and hours to charge on low power mode.

      On the other hand, I have a bluetooth headset that charges from zero to full in about half an hour off of just 100mA, so this clearly depends on the device.

      --

      I read the internet for the articles.
    60. Re:And why the hell do I need a driver for this? by ericfitz · · Score: 1

      There is a process to put a driver in the box with Windows, thousands of devices do so. The RAZR didn't exist when Windows XP shipped and Motorola hasn't seen fit to either identify the device over USB generically (so an in-box driver would be used) or gone through the WHQL process to put their driver on Windows Update (for example, by providing driver verifier results to Microsoft to demonstrate a minimum quality bar) so that it would be automatically downloaded and installed when you first plugged in the phone.

      Microsoft provided a way for Motorola to solve this problem for customers; Motorola made the choice not to do so. It's not Microsoft's problem or fault.

    61. Re:And why the hell do I need a driver for this? by Inda · · Score: 1

      My Samsung works like this. Fast charge using the charger, trickle charge at work because I can't install the drivers (the mass storage function still works fine), and fast charge on this laptop because it's mine.

      --
      This post contains benzene, nitrosamines, formaldehyde and hydrogen cyanide.
    62. Re:And why the hell do I need a driver for this? by hankwang · · Score: 1

      And in fact, pretty much every USB port you find will happily supply 500mA to anything you stick across the relevant pins.

      So what happens if you put 4 devices of 500 mA each to an unpowered USB hub?

    63. Re:And why the hell do I need a driver for this? by 2short · · Score: 3, Insightful

      You don't (and can't) "detect" power on a line, nor can a hub "throw" power at them.

      The hub is supposed to keep the voltage at 5V. How many amps that causes to flow through a device is up to the device, which is supposed to be smart enough to limit itself to 100mA until has gotten permission via software to draw more. All manner of devices ignore this because it's a few cents cheaper to not include those electronics, and just pull whatever you feel like. Hub makers must deal with this or have their products melt and not sell, so they deal. But it's the device that is wrong. No machine maker in their right mind will include a port that can't supply 500mA right off the bat, because the standard is so universally ignored.

    64. Re:And why the hell do I need a driver for this? by Obfuscant · · Score: 2, Informative
      Yeah, I doubt it could change the computer to provide more, but it might be telling the phone "ok to charge at 5V". Dunno. Stupid to have to install a driver to do that anyway.

      I would suspect that the moto charger does 5.2 and that's how the phone detects "dumb" charger.

    65. Re:And why the hell do I need a driver for this? by torkus · · Score: 1

      Important bit of info not discussed:

      The USB spec is designed to protect the *computer* not the device.

      Devices draw as much as they can up to the max power they're engineered for - blackberries, for example draw more than 500mA on a wall-wart.

      --
      You can get rich if you own a politician, but you have to be rich to buy one in the first place.
    66. Re:And why the hell do I need a driver for this? by morgan_greywolf · · Score: 1

      No. Are you saying that USB ports put out different amounts of current on Windows vs. Linux? I have a hard time believing this. As they say on Wikipedia, [Citation Needed].

    67. Re:And why the hell do I need a driver for this? by lawaetf1 · · Score: 1

      Agreed. I remember being amazed at how the charge symbol on my blackberry would come on with my old laptop but the battery meter never budged upward. A classic WTF moment until I learned about the different amp modes.

      --
      CommentBot 0.7a running with args "-module irritate,disagree -target random"
    68. Re:And why the hell do I need a driver for this? by JWSmythe · · Score: 1

          It's not necessarily a matter of what the battery needs to charge. What does the charging circuit expect to be able to draw? If it can't draw sufficient power, it may not try to charge. ... or a better example ...

          A friend of mine has a .. well, some weird little phone. :) I know it was covered here on Slashdot at some point. Anyways, it's a neat phone, but if the battery dies, you can't charge it. No power means nothing to power the charging circuit to say it's allowed to charge. It's just a subtle design flaw.

          So we cheated. We couldn't find a stand-alone charger for the battery. If we can't bring power to the battery, we have to bring it to the phone, so the phone can charge the battery. It needed a jump start.

          It has a 3.5v battery, something like 1500mAh. The design spec is up to 4.2 volts.

          I wired two C-cell batteries in series. They each read 1.8v on my meter, which can be expected from dry-cell batteries. I carefully attached two wires between the battery and the phone, so the battery made contact with it's normal terminals, AND my wires.

          When everything was connected, we were able to turn it on, and plug it back into the wall. After about a minute, it started to charge.

          So, just because you think something operates one way, doesn't mean that it really does.

          I know the crackberry's won't charge unless the driver is installed (a kernel option in Linux). They expect to pull more current than is available in low power mode, and it simply doesn't work.

          I was working on some other piece of hardware. I can't remember exactly what right now. But, it was the same way. The port had to be told to allow the extra current, and voila, it would work. :)

      --
      Serious? Seriousness is well above my pay grade.
    69. Re:And why the hell do I need a driver for this? by Aczlan · · Score: 4, Informative

      Though I've got no actual hard evidence to back it up, I seriously believe there's some sort of ultra-cheap DRM built into the chargers and phones to prevent you from buying reasonably priced travel/home replacement chargers.

      It APPEARS that the difference is that some USB chargers put out 5.2 volts instead of 5. The phone likes 5.2V. It doesn't appear to like the 5V, but I think it is charging ok anyway. I've never run it down far enough to know for sure, so I can't swear that it does.

      Everything else I charge on both warts charges ok, so I just swap the two if the green light on the phone doesn't come on.

      The "Cheap DRM" is almost correct, the issue is that the "OEM Motorola" chargers have a resistor between pins 2 and 3 (center pins) of the mini USB plug, no USB communication (from a computer), or resistor and the phone wont charge.

      Aaron Z

      --
      "Democracy is two wolves and a lamb voting on what to have for lunch. Liberty is a well-armed lamb contesting the vote
    70. Re:And why the hell do I need a driver for this? by torkus · · Score: 1

      I woudn't call it a myth exactly. You need to supply enough power from the USB port to power the device and then supply additional power to charge the battery. Oh, and overcome any losses in the charge circuit, etc. too while ur at it.

      Any device that requires .5w or more to operate will not be able to charge off a low-power USB port at all (while on).

      Your phone must have a small battery in your phone (or mistaken about being in low power mode) - you're only getting 2.5wh over 5 hours. 4+wh is plenty common (3.7v * 1.1Ah in BB or RAZR)

      GP is wrong, low-power usb is sufficient for charging *some* phones (if they allow it)

      --
      You can get rich if you own a politician, but you have to be rich to buy one in the first place.
    71. Re:And why the hell do I need a driver for this? by drsquare · · Score: 1

      Maybe I'm just old fashioned, but I charge my phone through the plug. What would I need a USB cable for?

    72. Re:And why the hell do I need a driver for this? by sharkey · · Score: 1

      If I set my KRZR USB connect type to "Data", needs Motorola drivers installed to charge. If I set it to "Memory Card", it works as a mass storage device and charges.

      --

      --
      "Outlook not so good." That magic 8-ball knows everything! I'll ask about Exchange Server next.
    73. Re:And why the hell do I need a driver for this? by digitalunity · · Score: 2, Informative

      The OS controls the USB host controller which sets maximum current per port. Assuming the drivers are available for your host controller, Windows and Linux can both direct the host controller to operate within spec.

      Unidentified USB devices are limited to a lower current than identified devices. This was done to prevent 'dumb' electronic devices from sinking too much current and breaking the output drivers on the host controller.

      --
      You can't legislate goodness. Let each to his own destiny, by will of his freely made choices.
    74. Re:And why the hell do I need a driver for this? by rwiggers · · Score: 1

      Linux has the phone drivers standard.
      In windows and newer phones, like the razr, just set the phone to enumerate as mass storage device. It will enumerate as a disk and charge without problems. The factory default setting is to enumerate as a sync device, to sync your phone book with the pc. This isn't a standard driver.

    75. Re:And why the hell do I need a driver for this? by Lucky75 · · Score: 1

      The best way of getting around this is to either buy a USB->AC adapter, which can be expensive (particularly from apple), or just get a damn powered usb hub and plug the thing into there. Problem solved.

      Honestly, I hate all this BS about needing a computer to charge my mp3 player or phone. What happens if you're on vacation, for example? And proprietary adapters just piss me off. At least RIM/Blackberry use standard microUSB ports.

      --
      DNA -- National Dyslexic Association
    76. Re:And why the hell do I need a driver for this? by Khyber · · Score: 1

      Okay, time to interject.

      ANY POWER CAN CHARGE A BATTERY. You can charge a 9v battery with 1v @ 10mA if you wanted to, it would just be DAMNED SLOW.

      There is *NO* reason for something to not charge when plugged into USB. NONE WHAT SO EVER.

      This is pure and simple GREED on the part of every manufacturer that realizes they make more profit off their crap chargers and adapters sold at ridiculous markups, and sell you the phones for cheap.

      Sorry, USB can't violate the laws of physics and fundamentals of electronic circuitry. This the the device makers screwing with the spec and standard to lock out competition, not a problem inherent in USB.

      --
      Still waiting on Serviscope_minor to wake up to fucking reality and realize that Jessica Price isn't going to fuck him.
    77. Re:And why the hell do I need a driver for this? by rk · · Score: 1

      If voltage is constant, then setting the current is de facto setting the power. But, you're right... current is not power.

      Unrelated: How many victims has your sig claimed? ;-)

    78. Re:And why the hell do I need a driver for this? by swillden · · Score: 1

      What you mean to say is that Microsoft provided a way for Motorola to work around Windows' stupidity by jumping through a few hoops.

      There should be no need for device-specific drivers for handling simple things like charging requests, and Windows should have much better support for usage of generic drivers.

      Linux gets this right. Windows is broken.

      --
      Note to ACs: I usually delete AC replies without reading them. If you want to talk to me, log in.
    79. Re:And why the hell do I need a driver for this? by commodore64_love · · Score: 1

      >>>just because your phone has a small battery and sips power doesn't mean every device made does

      My point exactly. The person I was replying to said "100ma is not sufficient to charge a phone," as if that's true for every phone in existence, and it clearly is not. My Nokia charges just fine.

      --
      "I disapprove of what you say, but I will defend to the death your right to say it." - historian Evelyn Beatrice Hall
    80. Re:And why the hell do I need a driver for this? by jacksonj04 · · Score: 2, Interesting

      They don't get the power they need to operate, but may think that they do. I spent ages trying to figure out why an external DVD drive wasn't working properly because it had enough power to tell the host it was there, appear as a device etc but not enough to actually function.

      --
      How many people can read hex if only you and dead people can read hex?
    81. Re:And why the hell do I need a driver for this? by 2short · · Score: 1


      If the hub is cheap and dumb, the same thing as if you plug in 1 device drawing 2 amps. At some point, the power supply will blow a fuse, trip a breaker, or melt. Probably it will brown out first, supplying less than 5V, and forcing your device(s) into a power range it can handle that way.

      That's why the standard exists and would be a good idea.

    82. Re:And why the hell do I need a driver for this? by AmiMoJo · · Score: 4, Interesting

      There is a very simple solution to this that does not involve any drivers - USB HID devices.

      I create my own USB devices (http://denki.world3.net) and almost always use HID instead of a special driver. Even if the phone is not a "human interface device", you can just create a special kind of HID device that the computer will basically ignore. You can still do any custom communications you like but the device will install on Windows/Linux/Mac without the need for a driver, and you can specify the amount of current you want.

      --
      const int one = 65536; (Silvermoon, Texture.cs)
      SJW, n: "Someone I don't like, and by the way I'm a fuckwit" - AC
    83. Re:And why the hell do I need a driver for this? by maxume · · Score: 2, Interesting

      Is it drawing 0.5 amps?

      Are you sure it isn't using the built in mass storage driver?

      Etc.?

      0.1 amps is fine for overnight charging of small devices, but it really isn't all that nuts for people to expect their phone to charge completely in a couple of hours. That you don't care isn't necessarily relevant.

      --
      Nerd rage is the funniest rage.
    84. Re:And why the hell do I need a driver for this? by SScorpio · · Score: 1

      The point is that you'll now be able to have a standard plug with a USB plug on one end that will charge any future phone you buy. You'll no longer have to have a different power adapter for each phone.

    85. Re:And why the hell do I need a driver for this? by Andy+Dodd · · Score: 1

      "Actually it's worse than that, there are wallwarts that supply 5V (often at 1000mA or more) to a USB connection but don't have a USB host. Devices that refuse to charge before enumeration won't work with those either."
      Most wallwarts have some way of signaling a dumb charger. For Mini-USB, the "de facto" standard used by Motorola, Blackberry, HTC, TomTom, and others is to ground a pin on the plug that is normally N/C.

      --
      retrorocket.o not found, launch anyway?
    86. Re:And why the hell do I need a driver for this? by justzisguy · · Score: 4, Informative

      You certainly can pull 500 mA from a port without the device asking politely, but it won't be compliant with the spec. From the USB 2.0 spec, 7.2.1, "Devices must also ensure that the maximum operating current drawn by a device is one unit load (100 mA), until configured."

      The 5.0 V rail, VBUS, does not monitor the sourced current, making sure that no devices are drawing more than what they've politely asked for. The current limiting is done to protect against a direct short, often limiting a single port to 1 A (or more for ganged ports higher)

    87. Re:And why the hell do I need a driver for this? by mzs · · Score: 1

      This is so infuriating. I think it is time for me to sacrifice a USB cable so I can charge my wife's cell phone with the car charger. How many mOhms?

    88. Re:And why the hell do I need a driver for this? by Aczlan · · Score: 1

      I looked and I stand corrected, apparently it depends on the phone, directions and schematics are available here: http://pinouts.ru/CellularPhones-A-N/razrv3_charger_pinout.shtml and here: http://krhainos.tk/motoplug.jpg

      Aaron Z

      --
      "Democracy is two wolves and a lamb voting on what to have for lunch. Liberty is a well-armed lamb contesting the vote
    89. Re:And why the hell do I need a driver for this? by Culture20 · · Score: 1

      Which is a lovely spec, but it's fiction.

      Aye. I've often found charging a phone on a foreign computer is often as simple as booting into the BIOS password screen. The USB ports all usually deliver max power, expecting a USB boot device to be plugged in.

    90. Re:And why the hell do I need a driver for this? by sjames · · Score: 2, Insightful

      I couldn't convince him to make the device charge without a driver though,

      GOOD! If you think charging slowly will piss people off, see what dragging down vcc until every device on the hub mysteriously and randomly malfunctions will do! Or if the hub is smarter, try no charging at all because the device violated spec and the port was shut down to keep it from causing problems for compliant devices.

      Keep in mind that if several devices all try your strategy, it's quite likely that one or more will introduce terrible ripple. It's also possible that some poor hub that's perfectly compliant (though a bit fragile) will be damaged.

      There is, however, no reason the phone shouldn't present itself as one of the standards defined devices so that a generic driver can enable it for full power.

      At the same time, there IS a battery charging specification for USB. A dumb charger can comply just by having a current limiting resistor across the data lines. A USB port can also use the spec to agree to provide 1.5A to the device if it is designed to do so.

      By staying within the spec, the phone gets to charge, won't damage anyone's hardware, won't cause random malfunctions, and WILL be permitted to bear the appropriate USB logos. One of the best things about USB is that there are actual specs and most everything obeys them reasonably. That's why USB devices tend to just work if the OS has decent USB support. The last thing we need is for a bunch of phones to start cheating and turn USB into a random crapshoot like Plug'n'Pray.

    91. Re:And why the hell do I need a driver for this? by Pla123 · · Score: 1

      I tried charging RAZR using 2 different non-Motorola mini-USB 500mA chargers and it said "Cannot charge" on the phone.

      Clearly it is not a 100mA/500mA issue. They intentionally lock it to their own chargers. That's why it requires drivers on PC...

      It seems, Motorola has their own interpretation of the word 'standard'.

    92. Re:And why the hell do I need a driver for this? by Anonymous Coward · · Score: 0

      correction, Motorola sucks, and wants to charge you for the driver for a device you already own...

    93. Re:And why the hell do I need a driver for this? by prisoner-of-enigma · · Score: 1

      Odd question: does the USB device need to be on in order to charge? I ask because 100mA will eventually charge anything that's not consuming power.

      --
      In the end they will lay their freedom at our feet and say to us, Make us your slaves, but feed us. - Fyodor Dostoyevsky
    94. Re:And why the hell do I need a driver for this? by Anonymous Coward · · Score: 0

      Why is your phone a different device when plugged in again? The common cause for this is that it forgot to implement the "serial number" part of the USB spec. An OS has two ways to deal with that kind of braindamage. 1. Assume all such phones are really just one device. or 2. Assume you've got a new device, every time it sees it.

    95. Re:And why the hell do I need a driver for this? by fuzzyfuzzyfungus · · Score: 1

      If you check the logs, you'll see that you are indeed using a driver, just a driver that ships with the system, and functions without intervention.

    96. Re:And why the hell do I need a driver for this? by Anonymous Coward · · Score: 0

      You don't. If your phone has a memory card in it, go into Connection, choose USB Settings, and change Default Connection to Memory Card. Your phone will appear as a standard external drive to the PC, and it will charge as well. You may need to turn USB Charge on, I don't know if that defaults to off or on. That is in Settings->Initital Setup.

    97. Re:And why the hell do I need a driver for this? by afidel · · Score: 1

      In theory no, in reality for lots of things, yes.

      --
      There are 4 boxes to use in the defense of liberty: soap, ballot, jury, ammo. Use in that order. Starting now.
    98. Re:And why the hell do I need a driver for this? by Anonymous Coward · · Score: 0

      ANY POWER CAN CHARGE A BATTERY. You can charge a 9v battery with 1v @ 10mA if you wanted to, it would just be DAMNED SLOW.

      No, you cannot charge a 9V battery with a 1V supply capable of 10mA. If you tried, the battery would discharge, not charge. It's electronics 101: current flows from the higher voltage potential to the lower. 9V is much more positive than 1V, so the battery's going to drive a current into the charger rather than receive current from it.

      (Since real batteries experience voltage depression the more they discharge, eventually the battery voltage will drop to 1V and current will cease to flow at all.)

      Sorry, USB can't violate the laws of physics and fundamentals of electronic circuitry. This the the device makers screwing with the spec and standard to lock out competition, not a problem inherent in USB.

      You may want to get a little bit better grasp on those laws of physics and fundamentals of electronic circuitry before you whine about something like this the next time.

      You could even be right that the device makers are doing something not consumer friendly, but if so, you aren't right for the reasons you think you are.

    99. Re:And why the hell do I need a driver for this? by lostguru · · Score: 1

      I'm willing to bet that it has nothing to do with the amount of power provided by the USB port and everything to do with the phone refusing to charge. My grandfather was recently in town and had forgotten the charger for his new motorola phone, I looked at the phone saw the micro usb port and figured it could be charged with an ipod usb charger and a micro usb cable. Oh how silly, plug it all in and the phone says "Unapproved power adapter" or something like that and refuses to charge.

      --
      Jayne: "These are stone killers, little man. They ain't cuddly like me."
      98% of America's teens drink alcohol, smok
    100. Re:And why the hell do I need a driver for this? by Cillian · · Score: 1

      From my experience with ipod charging, and from reading something about phone charging elsewhere, I think there is something to do with holding the data/clock lines at ground, for a dumb wall charger. I myself built a little USB adapter (I mangled a USB extension cable, ok?) for my ipod that connects only the power and not data lines, so my ipod can charge from computers without going into disk mode.

      --
      -- All your booze are belong to us.
    101. Re:And why the hell do I need a driver for this? by Extide · · Score: 1

      How do you expect to charge a 9v battery with 1v?

      --
      Technophile
    102. Re:And why the hell do I need a driver for this? by Obfuscant · · Score: 1

      It must depend on the phone, because my W490 charges just fine from a generic wall wart. The only difference I've found is the .2V difference.

    103. Re:And why the hell do I need a driver for this? by PitaBred · · Score: 1

      Pray tell... what is the case where you would have two of the same device, and need different drivers for them? I mean, their USB address is different, so you can tell which is which very easily during operation. But if you don't need separate drivers, why would the OS ever CARE what the serial number is? It'd be up to applications accessing the device that would care about the serial numbering, and that's it.

    104. Re:And why the hell do I need a driver for this? by swillden · · Score: 1

      correction, Motorola sucks, and wants to charge you for the driver for a device you already own...

      Or maybe they just want you to use Linux?

      --
      Note to ACs: I usually delete AC replies without reading them. If you want to talk to me, log in.
    105. Re:And why the hell do I need a driver for this? by Aczlan · · Score: 1

      I have seen this on a Motorola W385 and a V325i

      Aaron Z

      --
      "Democracy is two wolves and a lamb voting on what to have for lunch. Liberty is a well-armed lamb contesting the vote
    106. Re:And why the hell do I need a driver for this? by Cillian · · Score: 1

      If the phone a) Needs to be turned on while charging b) Draws more power than 100mA @ 5V, then it won't so much charge on USB as discharge more slowly.

      --
      -- All your booze are belong to us.
    107. Re:And why the hell do I need a driver for this? by ChunderDownunder · · Score: 1

      Yay!

      At least where I live, historically the most popular brand was Nokia. Not because they were superior phones but because one could always rely on someone else having a charger.

      Travelling overseas magnifies the problem when you have lots of different AC devices but only one conversion plug for the region's wall socket.

      This way, plug your netbook into a wall socket and charge everything else, at the same time, via a USB hub. :)

    108. Re:And why the hell do I need a driver for this? by FuckTheModerators · · Score: 1

      Even better are RIM's Blackberry mini-USB wall chargers, which will charge a BB just fine but won't do shit for a Motorola. (At least PEBLs anyways, and I think the RAZR's the same thing in a different housing)

    109. Re:And why the hell do I need a driver for this? by AbRASiON · · Score: 1

      You can say nonsense and get a +3 all you like, the fact remains that several motorola models require a damn driver installation, I know this because I have to install it for half our damned users all the time.

    110. Re:And why the hell do I need a driver for this? by Hal_Porter · · Score: 1

      Well if that's the case why not let the damn phone charge at 500mA before the driver loads?

      --
      echo -e 'global _start\n _start:\n mov eax, 2\n int 80h\n jmp _start' > a.asm; nasm a.asm -f elf; ld a.o -o a;
    111. Re:And why the hell do I need a driver for this? by apostrophesemicolon · · Score: 1

      all in all, if Apple would just use MicroUSB port for charging, it would have saved me alot of headaches.

      There's been many times my iPod ran out of juice while there's a computer and MicroUSB cord lying around.. That's like a mouse starving to death on a piece of cheese (sorry can't find better analogy)

    112. Re:And why the hell do I need a driver for this? by morgan_greywolf · · Score: 1

      As was pointed out by another poster (digitalunity), Ubuntu and Windows handle the USB ports differently. Still, my Windows XP box at work doesn't have a driver installed for my LG Rumor. But maybe the Rumor can get a full charge on 100mA, while the Motorola phones can't. *shrug* So at this point, I don't doubt that the Motorola phones probably need a driver.

    113. Re:And why the hell do I need a driver for this? by apostrophesemicolon · · Score: 1

      the reason why I only carry the iPhone USB cord and MicroUSB cord when I travel.. the laptop is the power adapter.

    114. Re:And why the hell do I need a driver for this? by Eskarel · · Score: 1

      Yes, but since when do we yell at companies for following standards?

    115. Re:And why the hell do I need a driver for this? by Anonymous Coward · · Score: 0

      thats worse than being redundant... at least link to your other fucking post.

    116. Re:And why the hell do I need a driver for this? by Anonymous Coward · · Score: 1, Informative

      This is part of the mobile USB spec, most new devices look for that resistor. If it is there, the device knows it's connected to a basic charger. Depending on the hookup of the resistor, the device is allowed to draw up to an amp and a half.

      7.5W instead of 2.5W means much faster charging.

    117. Re:And why the hell do I need a driver for this? by Eskarel · · Score: 1

      Pray tell, why in the name of god would you ever have two identical USB devices which require different drivers in any realistic scenario?

    118. Re:And why the hell do I need a driver for this? by darkpixel2k · · Score: 1

      I have working USB on my computer. Why the hell do I need to install a Motorola XP driver to charge my RAZR?

      You don't have to install the Motorola Driver for XP. You could just install Linux. It charges without having to go driver hunting. And it works for more than just Moto Razrs. It works with every other USB phone too, plus PDA's. Stupid Microsoft.

      --
      There's no place like ::1 (I've completed my transition to IPv6)
    119. Re:And why the hell do I need a driver for this? by Anonymous Coward · · Score: 0

      I'm going to lean towards the phallic choice you suggest.

      You always lean towards the phallic choice.

    120. Re:And why the hell do I need a driver for this? by 2short · · Score: 1


      That would be contrary to the standard, and while I said "All manner of devices ignore this", it's really mostly cheap stuff that does; manufacturers of expensive stuff like phones care if they can put the real USB-certified logo on their packaging etc.

      The better solution would be for the phone to happily connect to a driver for a generic class of devices if it's specific driver wasn't there. You wouldn't get any fancy features specific to that phone, but you could still ask nicely for more power. My camera does this; with the right driver it does various fancy stuff (I don't actually know what, I don't use any of it), but on any random computer it looks like a generic drive full of image files. In the interest of full disclosure, I'm not actually any sort of expert on USB, so I don't know if there is some good technical reason why the phone can't charge fast and obey the spec.

    121. Re:And why the hell do I need a driver for this? by grotgrot · · Score: 1

      why is my damn phone a different device when I plug it into a different USB port?

      That is not the fault of Windows but of the device. USB devices are supposed to include a serial number. If they do then Windows can tell it is the same device plugged in elsewhere. If not then it has to assume there could be multiple devices. A second reason is a consequence of Windows backwards compatibility. Because there is a device name space (eg COM9 for serial like devices such as phones) each one has to be plumbed appropriately. If your phone was COM7 last time then you want it to be the same this time. Sure Windows could drop backwards compatibility, but that is one of the major reasons people use it - because their programs work and keep working. (Did you know that the Visicalc binary from 1982 works just fine on XP? It dates from before DOS even supported subdirectories!) There is a lot of interesting reading at Raymond Chen's blog including an article on this very topic as well as how important backwards compatibility is to Microsoft. Glad I only use Windows for gaming and to update my Blackberry's software. Twins :-)

    122. Re:And why the hell do I need a driver for this? by fonduesatdawn · · Score: 1

      Power is power is power. Ever since P=IV we have known this: you can convert between voltages.

    123. Re:And why the hell do I need a driver for this? by Anonymous Coward · · Score: 0

      because your not running Linux :)

      I must admit i didn't realize a driver was needed till I lent my Razr to a windows usng friend who couldnt charge it via a usb port.

    124. Re:And why the hell do I need a driver for this? by aliquis · · Score: 1

      I don't get it why only Apple was bashed though, personally I already know they are all about patents and vendor lockin, but why not mention that the next Android phone from HTC for instance don't even come with regular headphone output but use their own interface for it? It all suck (understandable if it's for supporting a headset with mic though, but then atleast offer an adapter-cable for headphone only usage to.)

    125. Re:And why the hell do I need a driver for this? by Cili · · Score: 1

      some Iriver mp3 players can be setup to connect as either UMS (usb disk) or MTP (music device?). In MTP mode you must have Windows Media Player 10 installed.

    126. Re:And why the hell do I need a driver for this? by EvilBudMan · · Score: 1

      Yes, I have run into this with the razr v3a. I even have Phone Tools. I can transfer files via Blue tooth without any problem but cannot even maintain a connection over USB much less charge it up. I think a driver got changed so I rolled back Phone Tools to the old version downloaded drivers etc. Even when it did charge it was slow 500mA vs 100mA but it did charge now if it does I could not tell you how fast it would be. It is longer than 1 day I can tell you that. So if anyone has any links that may help solve this by providing a link to that driver, it would be much appreciated?

    127. Re:And why the hell do I need a driver for this? by EvilBudMan · · Score: 1

      The 500mA is shared by the hub. If it takes 500 mA to charge a Razr then I don't see why 100 mA wouldn't but slower but when you plug the damn device up it goes unrecognized. This didn't used to be the case but I upgraded Phone Tools to version 4 and bang no more USB anything with that Phone I rolled it back to the old phone tools but can't locate the problem with USB. I just wanna charge it. The USB 2.0 spec is 500 mA for the hub and I'm not sure but maybe each individual device is 100 mA. I have 5 root hubs and 6 external devices if you count the Razr which doesn't work. It's a cheap V3a from alltel. Now bluetooth works great. There is an internal card reader which probably takes up another device so I'm guessing 2 devices per root hub. I just looked and my Canon scanner draws 500mA with 98mA for USB Printing Support on the same hub. I don't get why it wont work unless Motorola or Alltel doesn't want it too.

    128. Re:And why the hell do I need a driver for this? by Richy_T · · Score: 1

      The RAZR needs a driver, my SLVR does not. Both won't charge with a plain "dumb" USB charger but if a resistor (10k I think) is connected between ground and the pin next to it, it will charge (Found out by disassembling an aftermarket car charger). This should work for a computer USB port too but will bork the cable for real USB.

    129. Re:And why the hell do I need a driver for this? by Richy_T · · Score: 1

      The moto charger has a resistor between ground and one of the data pins (I think it's the one next to ground).

    130. Re:And why the hell do I need a driver for this? by EvilBudMan · · Score: 1

      --The "Cheap DRM" is almost correct, the issue is that the "OEM Motorola" chargers have a resistor between pins 2 and 3 (center pins) of the mini USB plug, no USB communication (from a computer), or resistor and the phone wont charge.--

      Damn good info there. Do you know the rating on that resistor? I reckon the driver for computer communications at least for windows is free. I dunno about linux. The bad thing is that you can't have a completely dead phone and have it charge at 500mA. It just will not install the driver.

    131. Re:And why the hell do I need a driver for this? by Aczlan · · Score: 1

      Look at my reply here: http://slashdot.org/comments.pl?sid=1131077&cid=26892543 for pinouts

      Aaron Z

      --
      "Democracy is two wolves and a lamb voting on what to have for lunch. Liberty is a well-armed lamb contesting the vote
    132. Re:And why the hell do I need a driver for this? by EvilBudMan · · Score: 1

      I guess it does but it's still BS. This is an old trick that dates back. Leica used to do this with the cables to their survey (GPS) equipment. These were off the shelf items that just had the same thing A short with a resistor across the pins at over ten time the price of an off the shelf cable $50 vs. 5$. They made enough money on the rest of the stuff but man to use a proprietary cable to nickle and dime you more just turns you off to wanting to buy their stuff in the first place.

      There used to be some cables for sale aftermarket for LG's that were cheap but you can't find them now. Do you reckon that making a cable with that resistor in there and selling it violates the DMCA do you? I just don't see after market phone tools packages like I did. I got the Motorola ones through a very cheap deal. I think it came with something else I was already going to get.

    133. Re:And why the hell do I need a driver for this? by EvilBudMan · · Score: 1

      --Does the port address somehow magically make it behave differently?--

      Yes, it all depends upon what you have plugged into them. If you have 8 ports maybe you might only have have 4 root hubs. I think this motherboard related and not OS related.

    134. Re:And why the hell do I need a driver for this? by EvilBudMan · · Score: 1

      Thanks, I already have and have, seen this before. It's an old trick. I didn't think that was still happening. I wonder if you set up a business that sold cables made like these, would the DMCA kick in?

      You used to see these aftermarket cables and software for LG's that didn't have Bluetooth connectivity. You just don't see those much any more. It looks like someone would want one of these just to charge their phone if for no other reason.

      I seem to have a driver that works now, only it's in software and will not charge the phone if the battery is down to a certain point because the phone can't communicate back. Thanks again.

    135. Re:And why the hell do I need a driver for this? by Extide · · Score: 1

      So, if you are stepping the voltage up to 9v to charge it then you aren't really charging it with 1v are you? :)

      --
      Technophile
    136. Re:And why the hell do I need a driver for this? by kakris · · Score: 1

      This one goes to 11

    137. Re:And why the hell do I need a driver for this? by justzisguy · · Score: 1

      I'm really not sure by what you mean when you say "the 500mA is shared by the hub." There is no host-side current limiting, except to prevent short circuits (e.g., Polyfuse). The device is responsible for limiting its own current draw (such as by not turning on its battery charging circuitry). In this case, your phone is behaving itself and not charging until the software driver says it can. You can look at your phone in Windows Device manager and determine how many units (1 unit = 100 mA) the phone has negotiated to draw.

      All the built-in USB ports in modern machines (even laptops) can source the full 500 mA. You'll probably find the limitation in the driver.

    138. Re:And why the hell do I need a driver for this? by EvilBudMan · · Score: 1

      There are half as many Root Hubs as their are devices. Well one Root Hub says it supports 6 devices. Now I thought that 1 hub was limited to 500mA. But I may have a conflict somewhere too. I have a lot of devices and my machine is 5 years old. But low and behold you are right after reading what you say, every device should be 500mA on a computer since they are self powered. The ones that aren't self power I was guessing have to share 500mA. I guess the point being that it will negotiate 500mA with a half charged battery and charge up but not with one that is almost dead but can still manage to place a call for a short time. It also cannot take a charge and negotiate a bluetooth connection at the same time. I don't know if that is a USB conflict or the way it is designed. The battery charger made by Motorola will charge the phone when it is stone dead so I still don't see why USB wouldn't do the same thing if Motorola wasn't using a resistor and a short across their cable as someone else here mentioned. It might not be anything malicious since the whole Razr GUI is weird. Then again they might want to sell more chargers.

      When you charge the phone up it automatically turns the ringer on to loud if you had it on vibrate. You can't turn that feature off. I does lots of things automatically that you may not want it to do and there is no way to turn most of them off like with any other cell phone. At least with Windows I have managed to turn stuff off I don't want. I just got the Razr V3a because it was cheaper than buying a battery for my LG at the time and it had bluetooth.

      http://articles.techrepublic.com.com/5100-10878_11-5055986.html

    139. Re:And why the hell do I need a driver for this? by justzisguy · · Score: 1

      The root hubs aren't really discrete hubs like you might plug into a port. They don't supply power, just data. The power, VBUS, is supplied through the motherboard (from your main 5.0 V rail) and has no bearing on the hub, except an over-current limiter signal going back to the root hub. An external, self-powered hub would be limited to the 500 mA as you say, sharing its current among the available ports (and itself).

      Your phone may also actually draw more than 500 mA when it is plugged into the charger.

    140. Re:And why the hell do I need a driver for this? by commodore64_love · · Score: 1

      >>>Your Nokia phone is not the only USB device that exists.

      My point exactly. The person I was replying to said "the standard USB current isn't enough to charge," as if that's true for every phone in existence, and it clearly is not. My Nokia charges just fine.

      --
      "I disapprove of what you say, but I will defend to the death your right to say it." - historian Evelyn Beatrice Hall
    141. Re:And why the hell do I need a driver for this? by PitaBred · · Score: 1

      I read through Raymond's blog, and while I get what he's saying, I still thing it's trying to put a shine on a turd. I don't run into any USB functionality problems with ANY devices when running Linux. Why does Microsoft somehow act differently? There's no reason to REQUIRE a serial number unless the device itself somehow needs to be uniquely recognized. 99% of devices don't need that for any reason, and if they do, they should have their own software doing so, not the basic USB drivers. USB should only connect the device to the computer with an accessible interface to programs which is easy to do using bus enumeration. USB is removable... it shouldn't need anything permanent. And if it does, THEN require the serial number. He's arguing about edge cases as if they're the only ones that matter, and it's the general case that's suffering.

    142. Re:And why the hell do I need a driver for this? by EvilBudMan · · Score: 1

      Yes I think 5.2V. Thanks.

    143. Re:And why the hell do I need a driver for this? by Ed+Avis · · Score: 1

      I said 'Often the standard USB current isn't enough to charge', which is quite true. Often != always.

      --
      -- Ed Avis ed@membled.com
    144. Re:And why the hell do I need a driver for this? by Otto · · Score: 1

      You don't (and can't) "detect" power on a line, nor can a hub "throw" power at them.

      Yes, actually, you can.

      http://en.wikipedia.org/wiki/Current_limiting

      --
      - Give a man a fire and he's warm for a day, but set him on fire and he's warm for the rest of his life.
    145. Re:And why the hell do I need a driver for this? by geekoid · · Score: 1

      I just checked three USB on three different PCs. All are maxing at 100mA

      --
      The Kruger Dunning explains most post on /. http://en.wikipedia.org/wiki/Dunning%E2%80%93Kruger_effect
    146. Re:And why the hell do I need a driver for this? by geekoid · · Score: 1

      So you ahve a device that violates spec, (a hazard, btw) and then expect everyone to violates spec under some notion that the spec was made to piss people off.

      I take it you are 'that guy' in you work place.

      --
      The Kruger Dunning explains most post on /. http://en.wikipedia.org/wiki/Dunning%E2%80%93Kruger_effect
    147. Re:And why the hell do I need a driver for this? by 2short · · Score: 1

      Wow, that would be a great argument if you had made one. Or if your link said anything to support you. Or if you understood anything about basic electronics.

      That article discusses the various ways in which a supply circuit (the USB hub) can limit the amount of current a load (the device plugged in) is able to draw.
      But the load (device) cannot "detect" available current except by trying to draw it and seeing if it gets it. Until the current flows there is only potential, i.e. voltage.

    148. Re:And why the hell do I need a driver for this? by Khyber · · Score: 1

      I have a fair idea of what I'm talking about. Ever hear of a power inverter? You know, that little thing that turns 120vAC to 14.4VDC for your LCD backlight?

      Guess you don't. Power is power is power, period. P=IV and hell you can just wire a one-way diode and FORCE it to charge (or burn the diode out trying.)

      --
      Still waiting on Serviscope_minor to wake up to fucking reality and realize that Jessica Price isn't going to fuck him.
    149. Re:And why the hell do I need a driver for this? by Anonymous Coward · · Score: 0

      Then perhaps the device should identify itself differently for each mode. In fact I would expect it actually does so the computer knows how to deal with it correctly.

    150. Re:And why the hell do I need a driver for this? by Anonymous Coward · · Score: 0

      And how does that make the device behave differently?

      If it is not OS related, why do I not have this issue in Linux?

      It is retarded to require the re-installation of device driver just because you plug it into a different port. The driver has already been installed, just fucking use it. I have tried Windows 7 and can confirm it still exhibits this behaviour.

    151. Re:And why the hell do I need a driver for this? by EvilBudMan · · Score: 1

      In this particular case you are right. Windows does this. So that's what I'm doing, just using it even though it only halfway works right. I don't seem to have another choice.

      Before I figured it out I thought it might have been hardware related. Someone mentioned a cable or possibly the voltage that cause a Motorola Razr of some particular type not to charge as fast from a computers USB port. The windows driver does say that it uses 500mA. If I daisy chain six more devices off of this with an non powered hub, then why would they work. Windows stupid device manager can track the power usage of the ports but not the bandwidth. Having to even have a specific Motorola driver just to charge a battery is stupid too AND it will not work if the battery is down to a certain point. Motorola wrote the driver and designed the phone and I'm doubting how well one would charge on a Linux box. It's got a 5.0v rail just like a windows box. I think the Razr's charger is 5.2V and has a non-standard cable.

      So if you have a Razr that charges just fine on a Linux box, I would be interested in the model number? Mine is a cheapo v3a. So if you have any further info on how you can transfer files, charge a Razr on a Linux box, I would be interested. Because then I could have some more facts as to whether some of the blame might need to go towards Motorola and the design of their hardware, but it may in fact be totally a Windows issue but I suspect there are very few people here on this forum that have a Razr and a Linux box hooked together or would even admit to owning a Razr but I'm just trying to work with what I have for now.

    152. Re:And why the hell do I need a driver for this? by 2short · · Score: 1

      Interesting. I've definitely pulled 500mA with totally dumb device.

      How did you test?

    153. Re:And why the hell do I need a driver for this? by Otto · · Score: 1

      But the load (device) cannot "detect" available current except by trying to draw it and seeing if it gets it.

      Correct, that's exactly how it works. Do you consider this an invalid use of the word "detect" or something?

      Seriously, just because you don't understand what I'm writing doesn't mean it's wrong.

      --
      - Give a man a fire and he's warm for a day, but set him on fire and he's warm for the rest of his life.
    154. Re:And why the hell do I need a driver for this? by 2short · · Score: 1

      If the purpose of detecting is to avoid drawing too much current, drawing the current is not a reasonable solution.

      Possibly I still misunderstand what you are saying, but I cannot figure out an interpretation of your original comment that isn't either wrong or nonsensical. Perhaps I was ruder than necessary in my last comment, but posting "no, you're wrong" with t a link to a long Wikipedia article that doesn't explain anything of what you're saying is kind of obnoxious.

  2. Yay! by Nerdposeur · · Score: 3, Insightful

    About time.

    1. Re:Yay! by Anonymous Coward · · Score: 0

      I agree.

      When I bought my first RAZR (v3 then) and realized it could charge and sync off my computer using a standard connector I was so stoked.

      No more syncing over a buggy Motorola bluetooth dongle, no more dead phone if I forgot to grab my wall-wart charger (since I always carry a short mini-usb cable with my laptop).

      Nowadays, a proprietary connector on a device is a deal breaker for me.

      Check out the mini-usb to micro-usb adapters. They convert any mini-usb to micro-usb with a tiny cable extension.

      Here's an example:
      http://www.amazon.com/Motorola-MicroUSB-Adapter-RAZR2-SKN6252/dp/B001EJFZ5G

      Also, check out the Belkin Mini Surge protector with usb charger. I can't wait to see more versions of these hit the market.

      Here's an example:
      http://catalog.belkin.com/IWCatProductPage.process?Product_Id=400738

      And, if you want to make your own charger there are plenty of home brew usb charger projects on Instructables.

      I love standardization of hardware.

  3. data, audio, and power by goombah99 · · Score: 2, Insightful

    cell phone cables need to be able to support digital data, power and analog multi-channel audio input(microphones) and output (speakers). Some also need to support RGB or S-video out

    USB can do the first two. I may be mistaken but I don't think that USB can support those analog channels.

    So the connectors are not "oh so special" they are actually accomodating what is needed.

    If you want a minimalist approach of having a single docking connector then you need to have all that functionality.

    the alternative is to have a lot of different input/output ports or even mulitle ways of doing it.

    For my simple cell phone, I say yes! all I want is a USB charger so I can charge it off my laptop with any available cable. That's great. But for people with those uber-phones well USB is not going to hack it so it is kind of silly to complain.

    --
    Some drink at the fountain of knowledge. Others just gargle.
    1. Re:data, audio, and power by residieu · · Score: 1

      iPhones don't need RGB or S-Video, so no, they're connectors don't need to be anything other than USB. Audio input and output do not (or at least should not) use the same plug as power/data (otherwise you can't charge your phone and use the headset at the same time).

    2. Re:data, audio, and power by Anonymous Coward · · Score: 0

      Exactly what I was thinking. We already have a universal way to charge cell phones, and that is USB. So you have to have your "special" cable that goes from your proprietary connection to USB. So what? The power adapter (brick) is the real problem here, and USB is the closest we've come to not having to carry a bunch of different ones around.

    3. Re:data, audio, and power by jandrese · · Score: 2, Interesting

      You have a phone with S-Video out? Anyway, if you have a phone with a bunch of obscure ports like that, wouldn't it be better to have a separate connector for the power/data/digital audio from whatever weird ports you also have? Separate headphone jacks are hardly unique.

      --

      I read the internet for the articles.
    4. Re:data, audio, and power by Anonymous Coward · · Score: 0

      iPhones don't need RGB or S-Video

      Some ipods have video out. DOn't know specifically about the iphone but I assume it probably does too. And if not maybe some future one will and they don't want to change the connector (and thereby break all the existing docks)

    5. Re:data, audio, and power by Anonymous Coward · · Score: 0

      Not sure about MULTI-channel input, but a standard 3.5mm jack socket can supply a stereo analogue output, at least mono input, and possibly even digital optical output.

      It's better than having a proprietary integrated connector and a pointless bulky break-out cable.

    6. Re:data, audio, and power by Anonymous Coward · · Score: 0

      the iPhone has headphone out and line out. The line out is demanded by many people. Additionally, the iPhone/iPod series can be controlled remotely, via a bus that is exposed through the dock connector. There is much more going on through their dock connector than can be handled by USB + headphone/microphone jack. They do also provide RGB and S-Video output, so yes, they need those. Additionally, the dock connector sustains the physical abuse of constant exposure to all sorts of crap.

    7. Re:data, audio, and power by athakur999 · · Score: 1

      You could have a connector standard that was a standard micro-USB port next to a standardized audio or audio/video port - basically break out the iPod connector into two smaller connectors. You could plug in just a micro-USB cable to the micro-USB side, just a AV cable to the AV side, or use a standardized wider cable/connector that'd connect to both simultaneously.

      --
      "People that quote themselves in their signatures bother me" - athakur999
    8. Re:data, audio, and power by Theaetetus · · Score: 1

      iPhones don't need RGB or S-Video, so no, they're connectors don't need to be anything other than USB. Audio input and output do not (or at least should not) use the same plug as power/data (otherwise you can't charge your phone and use the headset at the same time).

      iPhones have a video out, and line level audio I/O, and you can't run that through your headphone amp and mic preamps without some significant changes and additional noise.

    9. Re:data, audio, and power by BESTouff · · Score: 1

      Well no. Uber-phones just need an USB connector and appropriate drivers to let them feed audio/video/files/network/whatever they feel like through it. No need for special drivers and wires ! Just standardize on protocols (like Bluetooth did, but USB is also quite good at that) and you have one connector for all your needs.

    10. Re:data, audio, and power by jonnythan · · Score: 1

      iPods do have analog video out and analog stereo L/R line out on their connectors. I rely on these, as it allows me to plug one cable into my iPod to both charge and listen to it in the car. And it allows me to drop my iPod into a dock and have it play audio and video through my system or the dock's built-in speakers/screen without having to attach multiple cables.

      These cannot be handled by USB.

    11. Re:data, audio, and power by nine-times · · Score: 4, Informative

      iPhones don't need RGB or S-Video

      They do if you have movies on them, and want to output those movies onto a TV screen. People probably don't do that very often, but you can do that.

      Audio input and output do not (or at least should not) use the same plug as power/data (otherwise you can't charge your phone and use the headset at the same time).

      iPods and iPhones have 2 different audio outs-- one being the headphone jack, which on the iPhone can also be used for headsets. So you can use that headphone jack while charging. The other audio out is in the dock connector, and it makes it so you can drop the iPhone into the dock and have the dock connect to a stereo. If not for that audio out, you'd have to drop it into the dock and then plug an additional cable from your stereo into the headphone jack.

      Not only would that be slightly annoying and inconvenient, but it's my understanding that the audio from the dock is also handled differently than the headphone jack. I'm not a real audiophile, so I don't remember what the deal is, but it's something like the dock connector not running the audio through the iPhone's built-in amp. The idea is you're going to feed it into a stereo and have volume control through that stereo anyway, so it shouldn't need to deal with that. Instead you (supposedly) get cleaner audio out to your stereo.

    12. Re:data, audio, and power by compro01 · · Score: 1

      and possibly even digital optical output.

      I believe you're thinking of SPDIF over TOSLINK, which looks like a 3.5mm jack and you can even stick a 3.5mm plug into it, but it won't do anything.

      --
      upon the advice of my lawyer, i have no sig at this time
    13. Re:data, audio, and power by jonnythan · · Score: 1

      How does that work with docks and in-car connectors?

      I want to just use one cable to connect my PMP to my car and have both audio and charging covered. I want to be able to drop my PMP into a dock and have audio and video come out of it without having to connect additional cables.

      "Drivers" do not solve these problems.

    14. Re:data, audio, and power by oogoliegoogolie · · Score: 1

      Umm...yes!
      So where do I get and how do I install the drivers on my audio receiver so I can dock my USB-only iPod to it? Hmm??

    15. Re:data, audio, and power by ohnotherobots · · Score: 1

      HTC's ExtUSB connector has this capability while still being backwards compatible with mini USB. You can still use a regular mini USB connector in it, but it has extra pins (6 I think?) for A/V out and mic in. I have this on my Touch Pro and it works great, I believe this is also what's on the G1.

    16. Re:data, audio, and power by Phroggy · · Score: 3, Informative

      iPhones don't need RGB or S-Video, so no, they're connectors don't need to be anything other than USB. Audio input and output do not (or at least should not) use the same plug as power/data (otherwise you can't charge your phone and use the headset at the same time).

      Choose Component or Composite A/V cables to connect your iPhone to a TV. Included in the box is a USB charging adapter, so you can charge your iPhone while playing movies if you don't want to connect it to a computer. All of this connects via the single dock connector, which is standardized across both models of iPhone and several recent models of iPod (see the list at the bottom of each page). So, once you get everything hooked up, you can just leave the cable in place, and whenever you want to connect your iPhone (or your friend's iPhone, or your other friend's iPod) it's just one plug to connect it to your TV and charge the battery at the same time.

      Remember, the iPhone has a built-in camera. Why wouldn't you want an easy way to plug it into a TV and show your family and friends the pictures you've taken?

      --
      $x='S24;r)>63/* h@<5+oZ)32"5cz';$me='phroggy'x$];
      $x=~y+ -xz+\0-Tx+;print$_^chop$me for split'',$x;
    17. Re:data, audio, and power by jonnythan · · Score: 1

      There are hybrid connectors out there that accept either.

    18. Re:data, audio, and power by AJWM · · Score: 1

      cell phone cables need to be able to support digital data, power and analog multi-channel audio input(microphones) and output (speakers). Some also need to support RGB or S-video out

      USB can do the first two. I may be mistaken but I don't think that USB can support those analog channels.

      Actually my iPAQ uses a USB headset, supporting both audio in and out (via analog/digital conversion in the headset). Personally I wish it also had a regular analog port.

      --
      -- Alastair
    19. Re:data, audio, and power by uglyduckling · · Score: 1

      indeed, for instance the headphone socket on a MacBook

    20. Re:data, audio, and power by jonnythan · · Score: 1

      Yup.

      Minidisc players/recorders had this way back when as well.

    21. Re:data, audio, and power by Constantine+XVI · · Score: 1

      Do what HTC does on their phones. Have your fancy weird connector, but design it to where a standard Micro-USB can plug in and do it's thing as well.

      Yes, it will break 90% of the accessories out there, but since when has Apple given two shits about backwards compatibility?

      --
      "I think an etch-a-sketch with an ethernet port would beat IE7 in web standards compliance."
    22. Re:data, audio, and power by Constantine+XVI · · Score: 1

      My 2001 MiniDisc* walkman respectfully disagrees. The 3.5mm jack doubles as a mini-TOSLINK jack.

      *Yes, I bought one. Sue me

      --
      "I think an etch-a-sketch with an ethernet port would beat IE7 in web standards compliance."
    23. Re:data, audio, and power by Theaetetus · · Score: 1

      Yes, it will break 90% of the accessories out there, but since when has Apple given two shits about backwards compatibility?

      Classic Mode doesn't ring a bell for you? How about the fact that an iPhone charger can charge a 5 year old iPod just fine?

    24. Re:data, audio, and power by Khyber · · Score: 1

      "How about the fact that an iPhone charger can charge a 5 year old iPod just fine?"

      That just goes to show you that Apple's only concern for interoperability is with their own products and NOBODY ELSE.

      --
      Still waiting on Serviscope_minor to wake up to fucking reality and realize that Jessica Price isn't going to fuck him.
    25. Re:data, audio, and power by ArcCoyote · · Score: 1

      You don't have to. There is a standard digital audio class for USB.

      The stereo can be the USB host and the device can present an audio source, or the device can be the USB host and the stereo can be an audio output. The first is probably better, because it lets the stereo control the device.

      Car stereos can implement this, or they can just mount the device through USB MTP or mass-storage protocols. Most car and home stereos with USB ports will do that.

      Now, Apple has to think different. They have their own proprietary iPod Accessory Protocol for control and digital audio over USB. Proprietary sucks, but properly authenticated devices can get digital output of DRM content.

      Some newer devices do license Apple's protocol. In fact, my Pioneer head unit lets me do iPhone to standard USB port on the head unit. (I actually use the charger cable for the Apple BT headset)

      At least one embedded solution supports it:
      http://www.jungo.com/st/embedded_usb_ipod.html

    26. Re:data, audio, and power by phoenix321 · · Score: 1

      There's only few things that cannot be handled by 480mps USB.

      Remote controlling a music player does not saturate a USB 1.0 connection, not in the least.

    27. Re:data, audio, and power by phoenix321 · · Score: 1

      USB can supply everything and the sooner a giant like Apple is pushing it, the sooner we all get these ridiculous cables out of our living rooms and offices.

      There's no need for video-out, there's no need for line-level audio out.

      Headphones are the only thing you'd need to have analog, for simplicity and form factor reasons, everything else is digital inside the device and could (and should) be converted from the non-portable counterpart, like the TV, the amplifier or the iPod-docking station.

      If DA-converters are cheap and small enough to carry them around at all times with the phone or ipod, they are sure as well cheap and small enough to put them in stationary, wall-powered devices.

      http://en.wikipedia.org/wiki/USB_video_device_class

    28. Re:data, audio, and power by Theaetetus · · Score: 1

      That just goes to show you that Apple's only concern for interoperability is with their own products and NOBODY ELSE.

      You should probably include <rant> tags or <threadjack> tags, considering the parent and grandparent posts were about BACKWARDS COMPATIBILITY, not interoperability.

      I mean, my god - Sony didn't make the Playstation able to play XBox games! The XBox can't play Super Nintendo cartridges! Those manufacturers all care only about interoperability with their own products and NOBODY ELSE!
      And in other news, you're a putz.

    29. Re:data, audio, and power by phoenix321 · · Score: 1

      If you connect your amp non-digitally, you're doing it wrong.

      If it's for cheapness, well, cheap CD players have DA-converters inside and still be cheaper than 30 bucks.

      If it's for quality, then interference and line noise will make analog transfer inferior and your Mark Levinson amp will do a much much better DA-conversion than the iPhone any day.

      There's no reason to use analog audio signals, neither for cost nor for quality reasons. And for digital signals, USB could very well be adequate.

    30. Re:data, audio, and power by Anonymous Coward · · Score: 0

      The new United business and first class long-haul seats have iPhone/iPod connectors so you can use your iPhone/iPod as a source input into the IFE. It provides power, lets you use watch your movies on the "big" screen and lets you use their big, comfy noise canceling headphones. Beats the heck out of craning your neck and/or trying to hold your device out in front of you... Can't do that without video output built in.

    31. Re:data, audio, and power by glennrrr · · Score: 2, Insightful

      USB can supply everything and the sooner a giant like Apple is pushing it, the sooner we all get these ridiculous cables out of our living rooms and offices.

      There's no need for video-out, there's no need for line-level audio out.

      This is just not very well thought out. USB is only useful when connected to a master computational device, almost always a Mac, PC or Linux box. It's ridiculous to expect it as a means to connect to the stereo system of a car. It's also ridiculous to force people to use a non-line level output to connect into a stereo. What would you have me do in my 2003 Civic? Install an onboard computer which somehow knows about some non-existent protocol to get a digital stream of music out of my iPhone. Use the headphone jack so I have the joys of balancing the audio every time I plug in?

      Or maybe I can use good old analog line level out of my iPhone's dock connector. Plug it in to a single cable which charges the phone and gives me a line out. I can even keep the headphones plugged in and in one ear so I can handle incoming calls or conveniently controlling the audio with the clicker button.

      Honestly, where do these memes come from? USB is a horrible hack of a connection protocol (spoken as someone who's written the occasional USB driver), which does a slow, shoddy job as a charging connection, and who's only benefit is ubiquity. I'm still unhappy Apple dropped Firewire charging mode, at least that was a decent power connection, not this pathetic 500mA USB mode.

    32. Re:data, audio, and power by Khyber · · Score: 1

      "Sony didn't make the Playstation able to play XBox games!"

      Of course not - the hardware capability isn't there and it would be absurd to even think it could be done. That has nothing to do with power adapters.

      "The XBox can't play Super Nintendo cartridges!"

      Cartridges, no. The actual game itself, yes, so there goes that argument.

      "And in other news, you're a putz."

      I try my best. You're an ass.

      --
      Still waiting on Serviscope_minor to wake up to fucking reality and realize that Jessica Price isn't going to fuck him.
    33. Re:data, audio, and power by Theaetetus · · Score: 1

      If you connect your amp non-digitally, you're doing it wrong... There's no reason to use analog audio signals, neither for cost nor for quality reasons. And for digital signals, USB could very well be adequate.

      Tell me, how do you play your iPod through your car's tape deck? And how do you record into your iPhone from a decent external microphone or mixer?

      If it's for cheapness, well, cheap CD players have DA-converters inside and still be cheaper than 30 bucks.

      You're trying to argue that something is done for cheapness, in a thread about why Apple made a custom dock connector with lots of additional I/O instead of just a mere USB connector? Do you even read the post you're replying to, much less the articles?

    34. Re:data, audio, and power by jo_ham · · Score: 1

      The connector on the bottom of the iPhone is the iPod dock connector, and while it is proprietary, it is standard across all iPods (the iPhone is just an iPod Touch with a cellphone bit built in) and makes use of the line-level audio out when you dock it with a set of speakers with an iPod dock, or connect it to the dock connector in your in-car system. The iPod photo has the ability to send video out to a TV screen for photo slideshows. I haven't tested this with my iPhone, but the connector is the same and the photo viewing software is much the same.

      The 2nd and 3rd gen iPods had firewire chips in them and the dock connector worked over firewire 400 as well as USB, and while the later iPods removed the FW chip, you could still charge them using a firewire port over the dock connector (it just wouldn't mount as a disc on the computer). Again, I'm not sure if this feature remains in the iPhone, but the connector has the pins for it. I'd test it out, but my firewire-port-ipod-wall -wart is in storage somewhere. The firewire port can supply between 18 to 30 volts at 1 amp I believe, far more than USB.

      While the proprietary connector could be a pain if you're trying to standardise all your power connectors, it is consistent across all the models (except the first gen with a 6 pin FW connector) and provides all the necessary features that the iPhone contains.

      I like the fact that I can dock and charge my iPhone and my iPod from the same cable that never leaves my computer, so I have the iPhone's wall wart and cable in my travel pack for when I need it.

      All of the devices designed for the iPod will also work with the iPhone because the port is the same. I think we'd see an even bigger outcry if the iPhone's port was different again from all the other iPods (there was a big enough cry that the headphone port was recessed and they fixed that in the 3G model, much to my approval).

    35. Re:data, audio, and power by jo_ham · · Score: 1

      No, indeed. But then you need to have a USB host controller. The iPod's control system is not done via USB.

    36. Re:data, audio, and power by jo_ham · · Score: 1

      My iPhone charges from my 3rd Gen 15GB iPod's cable, that's been connected to my machine since I bought it.

      Backwards compatibility. You keep using this word and I don;t think it means what you think it means.

    37. Re:data, audio, and power by jo_ham · · Score: 1

      I bought several. Including a JB-940 deck that I still use to this day.

      I fear minidiscs are going the way of polaroids though, but for the pro industry keeping them alive in broadcast radio etc.

    38. Re:data, audio, and power by glennrrr · · Score: 1

      Most car and home stereos with USB ports will do that.

      And what fraction of cars without USB ports can do that?

      And what fraction of cars have USB ports?

      I just bought my wife a 2009 Civic EX-VP which did not have USB ports. I'd have had to pay an extra $1200 for the package with a USB port. It did come with an analog auxiliary input port right next to the lighter port making it very convenient to connect a single iPhone charging/audio out cable.

      So, I'm taking it that you would want me to spend $1200 in order to pay less for a $30 cable. How much would less would the cable have to be in order for me to come out ahead? -$1170 Where can I get these cables that cost -$1170 because I'll take as many as I can.

      but properly authenticated devices can get digital output of DRM content.

      Also, why would I want to make it easier for the RIAA to lock down the connection between my iPhone and my car's stereo? I get all my music DRM free from Amazon, I have zero interest in audio content which is so locked down it won't come out a line-out connection. I guess in 10 years the majority of cars on the road will have satisfied your dream of having locked down RIAA compliant USB ports.

    39. Re:data, audio, and power by RupW · · Score: 1

      Install an onboard computer which somehow knows about some non-existent protocol to get a digital stream of music out of my iPhone.

      I agree with you on the iPhone connector, though in fairness many recent cars have Bluetooth-capable CD players or a CD player with mp3 support so the onboard computer *is* here.

    40. Re:data, audio, and power by glennrrr · · Score: 1

      I am not saying it isn't possible to have a computer or a gadget capable of managing a USB bus in a car, or even that you can't buy them. Clearly you can. But they are an added expense, especially when retrofitted into an existing vehicle. My 2003 Civic is paid off, it gets 38 mpg highway, it has a reliable factory stereo, to which I've already added an auxiliary input. This system perfectly fits my needs. It would be unreasonable to mandate that future audio devices use either a non-line level headphone jack or a USB port. The line level + charging capability of the current iPhone dock meets my needs perfectly (well I'd prefer if the charging was via the Firewire pins, but that is another story.) I would gain nothing from USB audio other than the loss of reliability and some impossible to detect in a moving vehicle audio clarity.

      And don't get me started on the unreliable mess which is Bluetooth.

    41. Re:data, audio, and power by phoenix321 · · Score: 1

      If you play your iPod through a cassette-deck-adaptor, you're doing it wrong. You can use the headphone out, because quality is going to be low anyway.

      Recording from external sources should be done either digitally (quality, stationary equipment) or a stereo mic-in is sufficient (ad-hoc, improvised scenarios)

      And I've presented both sites, quality/form factor issues AND cheapness. Under both arguments, including dozens of outputs on a handheld device is not the best solution. I'm just fed up with arguments for makeshift workarounds and sub-par quality connectors.

      I mean, what's the use of an analog output on a phone, quality wise? The thing emits up to 2 watts of EM waves for the phone that is interfering with any amp you connect it to. Optical TOSLINK would be the best way to go in this case, but USB-streamed digital signals may work just as well.

      But please, don't connect sources of EM-radiation to analog devices, the sound when a call rings in is horrible.

    42. Re:data, audio, and power by phoenix321 · · Score: 1

      Yes, we'd need one and that is expensive. But if consumer electronics would use them, we'd have a billion units produced every year and a high chance these things would be dirt cheap by then.

      Nearly all portables have USB connectors these days. Producing a simplified USB host controller could corner the market and talk to all portables available today. Build large numbers of this in cheap and small silicon and you could have some billion dollars in your pockets as every aftermarket device will use your IC. And the consumers would love it - one USB interface and they're set for everything.

      Has no company seen this potential? You'd probably don't need to be a rocket scientist to downsize a USB host controller from the already pretty small Windows Mobile environment down to smallish DSP-sized silicon.

    43. Re:data, audio, and power by ArcCoyote · · Score: 1

      Umm, my original post was answering someone who said how stereos, etc.. would need drivers for each device that only had USB. They don't.

      Anything will come out of the line-out connection, protected or not. It's analog. And hence why Apple has a single connector that can provide USB, video, line-out, serial control, and power. The other end of the cable can have as many plugs and splits as necessary, but the end you have to mess with all the time is one connector.

      The $1200 is for that NAV package that happens to also support USB audio. You can put a good aftermarket stereo in that car for less than $200. $150 or so more if you want better speakers (and you should, as Honda OEM speakers are worse than most) I highly recommend Pioneer for the head unit, they seem to have really nailed car-friendly iPod controls.

      Forget USB, the improvements in sound quality and options are worth it.

    44. Re:data, audio, and power by ArcCoyote · · Score: 1

      Let me also say, you've got a really crappy attitude. Having everything locked down is not my dream, I don't buy DRM media either.

      My remarks about the DRM stuff were concerning how Apple doesn't support the MTP standard, and doesn't even support Mass Storage on the iPhone/iTouch.

      If you want to get DIGITAL audio out of an Apple device, you have to either a) license Apple's USB protocols or b) scan the device's storage, if you can, and play what you can decode, which would NOT include FairPlay protected stuff.

      Most in-car solutions settle for analog audio and possibly RS232 serial remote control. Not all USB-capable stereos support Apple's protocol either.

    45. Re:data, audio, and power by kakris · · Score: 1

      Make your receptacle able to hold a mini usb cable, but wider. Place your special pins outside the area occupied by the mini usb cable. Someone who wants to just charge it can use a standard adapter, and someone who wants the extra features can still get them. Kind of like how you can put an RJ11 plug into an RJ45 jack.

      Hey, maybe this post will prove the obviousness of such a solution if someone goes and tries to patent this at least.

  4. Too good to be true by Anonymous Coward · · Score: 1, Funny

    You did notice the article said 2012?

    By then, they will have changed their minds again.

    Or, they will be switching to that mini-USB connector just as we move to USB3 with a new design

    1. Re:Too good to be true by Cypher04 · · Score: 1

      2012? Isn't the world supposed to end by then? Maybe the coming of a standardized charger for cell phones ushers in the apocalypse.

      --
      "If my doctor told me I had only six minutes to live, I wouldn't brood. I'd type a little faster." --Isaac Asimov
    2. Re:Too good to be true by Teun · · Score: 1
      The European Commission is about to give them 2 years to voluntarily come up with a universal charger (and head phone connector) or, like in China, face legislation.

      http://www.physorg.com/news153989416.html

      --
      "The likes of Facebook and WhatsApp are free to those whose privacy is of zero value."
  5. the oh-so-special adaptor is more than just USB... by bstreiff · · Score: 2, Informative

    To be fair, the iPod dock connector carries more than just USB. And the USB dock cables work on pretty much any model iPod.

  6. Why... by XPeter · · Score: 0

    USB provides 5 +/- 0.25 volts if I remember correctly. Why not just use the regular wall outlet instead? It would charge your devices so much faster compared to USB.

    --
    "The difference between genius and stupidity is that genius has it's limits" - Albert Einstein
    1. Re:Why... by MobileTatsu-NJG · · Score: 1

      Faster isn't always the winner. In my case, I have a lot more USB ports than wall-outlets available. Also, wall-warts are considerably bulkier and heavier. I charge my phone at night so faster charges don't buy me anything, but USB charging definitely makes me more mobile.

      --

      "I like to lick butts!" by MobileTatsu-NJG (#32700246) (Score:5, Informative)

  7. Re:Frosty Pistoon! by hedwards · · Score: 1

    Um, we did, and at this time he's probably already back in Crawford.

  8. Re:the oh-so-special adaptor is more than just USB by fpophoto · · Score: 1

    Yeah it is nice to be able to use my wife's 2nd gen ipod cable for my touch when I need to (and vice versa) I thought for sure that would be something Apple wouldn't do.

  9. oh-so-special? by nine-times · · Score: 5, Insightful

    I wonder how Apple will feel about this? Will they finally realize that their oh-so-special adapter is nothing more than a fudged USB interface?"

    Oh, like Apple is just using the dock connector to be "special"? It's true that the dock connector is *mostly* USB, but it also can carry audio and video so that, with only a dock, you can output to a stereo or TV. Also, the audio put out through the dock is supposedly different from what comes out of the headphone jack (I believe they aren't amplifying the audio from the dock), meaning you can get better quality for outputting to a stereo.

    So I don't know why the submitter has to turn this into an Apple-bashing thing. Apple actually uses standards pretty often. And often, when they do stray from a standard, it's in order to provide specific functionality-- and even then they often release the specs for their version, allowing others to adopt it. For example, I believe they released the specs for their custom "mini display port" that they're using without requiring any kind of licensing fees or anything.

    1. Re:oh-so-special? by Theaetetus · · Score: 4, Interesting

      So I don't know why the submitter has to turn this into an Apple-bashing thing. Apple actually uses standards pretty often.

      Apple was the first to push widespread adoption of USB, IEEE1394, 802.11n, and MPEG-4, among many other standards.

    2. Re:oh-so-special? by OSDever · · Score: 1, Informative

      The Apple dock-connector audio-out is (as far as I am aware) raw decoded audio at max volume. It does not respect the iPod volume control at all, though it is affected by the "sound check" volume-balancing algorithm.

      --
      What is the airspeed of a fully laden swallow?
    3. Re:oh-so-special? by fuzzyfuzzyfungus · · Score: 5, Interesting

      On the other hand, they specifically implemented an authentication chip that prevents video output on newer ipods if you use anything but officially blessed cables. There are certainly reasons for the dock connector; but that doesn't change the fact that Apple's approach toward accessory makers has pretty much been "flip over and shake until money stops coming out".

    4. Re:oh-so-special? by Anonymous Coward · · Score: 5, Informative

      It's a line level signal as opposed to headphone level signal. There's a difference. If you're running the signal through an external amplifier, you want line level.

    5. Re:oh-so-special? by UnknowingFool · · Score: 1

      Also, the audio put out through the dock is supposedly different from what comes out of the headphone jack (I believe they aren't amplifying the audio from the dock), meaning you can get better quality for outputting to a stereo.

      The audio from the Dock is not amplified so it is used if your iPod needs to connect to another device like your home receiver. Also the Dock allows your receiver to control your iPod if it has iPod controls. In this way, the iPhone needs more than the standard mini-USB.

      So I don't know why the submitter has to turn this into an Apple-bashing thing. Apple actually uses standards pretty often. And often, when they do stray from a standard, it's in order to provide specific functionality-- and even then they often release the specs for their version, allowing others to adopt it. For example, I believe they released the specs for their custom "mini display port" that they're using without requiring any kind of licensing fees or anything.

      There's a long line of things Apple has adopted that are not created by Apple. Incidentally USB was created by Intel. When it was first introduced, PCs had USB but Apple was the first to get rid of all their peripheral connectors except for USB and Firewire (which is an Apple invention). Today most PC MBs have PS/2 connections still. Other things include AAC (created by the MPEG consortium), DisplayPort (created by VESA), FLAC (open source by Xiph), etc.

      --
      Well, there's spam egg sausage and spam, that's not got much spam in it.
    6. Re:oh-so-special? by Midnight+Thunder · · Score: 0, Redundant

      The Apple dock-connector audio-out is (as far as I am aware) raw decoded audio at max volume.

      This is not really much different from line-out on many devices. Line out is not to be confused with the 3.5mm jack used for head phones which is volume controlled.

      --
      Jumpstart the tartan drive.
    7. Re:oh-so-special? by oogoliegoogolie · · Score: 1

      So I don't know why the submitter has to turn this into an Apple-bashing thing.

      Because the submitter wants to sound like an r34l cool h4Xo5?

    8. Re:oh-so-special? by 93+Escort+Wagon · · Score: 3, Funny

      So I don't know why the submitter has to turn this into an Apple-bashing thing.

      You must be new here.

      --
      #DeleteChrome
    9. Re:oh-so-special? by Anonymous Coward · · Score: 1, Interesting

      Not to mention the exclusion of 5.25" floppy drives in favor of 3.5", and later, the exclusion of any floppy drive in favor of just an optical drive and USB ports.

    10. Re:oh-so-special? by Logic · · Score: 4, Interesting

      Excellent point. Just to head off other people talking out of their ass (wishful thinking, I know), the pinout for the iPod/iPhone connector ought to be required reading before commenting on what it can and can't do. That connector provides interfaces for USB and Firewire, audio in/out, video out (composite and s-video), serial, and dedicated power.

      It's not an ideal situation, but a single cable covers just about every possible use case. That's a big deal, ergonomically, and it means Apple can standardize internally on an interface across multiple product lines.

      It's unfortunate: the knee-jerk reaction to "we need a universal charger" will miss the opportunity to standardize on a SINGLE interface cable for mobile devices, rather than using USB for power and data, a headphone jack for audio output, and who knows what proprietary arrangement for audio input and video output.

      --
      -Ed Felix qui potuit rerum cognoscere causas.
    11. Re:oh-so-special? by bucky0 · · Score: 4, Interesting

      [Citation Needed]

      I have a new iPod touch that works fine with some handmedown generic cables.

      --

      -Bucky
    12. Re:oh-so-special? by beelsebob · · Score: 1

      What you get out of the iPod on the dock connector in fact *is* line out â" hence not being controllable with the iPod volume selector â" because that controls the amp, and line-out is pre-amp.

    13. Re:oh-so-special? by Anonymous Coward · · Score: 0

      How much power would it use if the TV-out capability was constantly on? And how many third-party device manufacturers would enable the TV-out all the time in their cheap-ass plugs?

      And how much better is it for Apple to deal with techies complaining about the TV-out restriction than tens of thousands of people complaining about their shitty battery life?

    14. Re:oh-so-special? by yoshi_mon · · Score: 0, Troll

      'Newer' is always a tricky thing. Discarding the idea of 'new to you' as something your not using there are a few other things that could have happened.

      Older stock that sat around in a warehouse or even a unit that still was manufactured recently but was the last run of the rev right before they implemented that change.

      Saying 'newer' is not really saying much.

      --

      Really, I know what I'm doing...Ohhhh, look at the shiny buttons!
    15. Re:oh-so-special? by kellyb9 · · Score: 1

      Apple would NEVER make propietary hardware and then proceed to lock it down... that's just ridiculous....

    16. Re:oh-so-special? by Anonymous Coward · · Score: 0

      I've also yet to see a phone using a mini-USB connector that offers a "just drop it in" dock for charging (as opposed to a "fiddle with connectors" dock). But this is Slashdot... gotta keep up the Apple-bashing quota.

    17. Re:oh-so-special? by konohitowa · · Score: 1

      Logic (4864) : Just to head off other people talking out of their ass...

      Wait. You can't possibly be new here! Okay, enough of that.

      It's also unfortunate that many of the standards are so inflexible (USB, e.g.) as to preclude beneficial functionality on the consumer's end. For example, Apple used a modified USB on the original iMac to allow you to power the computer on (and sleep it) from the keyboard. Unfortunately, because it wasn't per spec (I'm assuming) they eventually dropped it. Another example is the ADC connector which carried digital & analog video, monitor power, USB, & soft power switch signals, via a single cable. Unfortunately, it required video vendor buy-in (making the cards more expensive) and never gained any non-Apple support (that, and the fact that the monitor power was limited). Plus it required an obnoxiously expensive adapter cable to pull out the DVI & RGB for non-Apple monitor use. But from a consumer convenience standpoint, it was a big improvement over the DVI system.

      Granted, I'm unaware of any efforts by Apple to encourage adoption of either of these by other companies, unlike Firewire, for example.

      Frequently, as the GP said, Apple uses standards when they are suitable. I've often seen NuBus referred to as a "proprietary bus". You know, good ol' proprietary IEEE-1196. That icky MIT bus that prevented the user the joy of installing IRQ jumpers. And they bailed on ADB when something better came along - USB. This before there was OS support for it in the Windows/Linux world. Alas, it's far more fun to continue the "proprietary" meme ad nauseam. Yeah - I know - I must be new here.

    18. Re:oh-so-special? by Animaether · · Score: 1

      "rather than using USB for power and data, a headphone jack for audio output, and who knows what proprietary arrangement for audio input and video output."

      as opposed to Apple's standards-compliant connector?

      Oh wait - this whole discussion was about there being -no standard-. So I suppose that makes Apple's proprietary as well, huh?

      Now, I agree that at least it's executed pretty well. But who else gets to use it?

      I know plenty of *docks* do... they pay Apple a hefty license fee to be allowed the privilege of adding it to their devices so that people can plug The Most Popular 'mp3 player' into the thing and have it look all stylish to boot. But what other device as the other end of that equation, the bit that's actually in the iPod/iPhone?

      Though, granted, I think I saw a 3.5mm to iPod connector type deal somewhere (might have been from a thread around here) that you could then plug into an iPod-/iPhone-dock so you could use any ol' player that had a 3.5mm jack. Be darned if I can find it now, though.

    19. Re:oh-so-special? by bucky0 · · Score: 1

      My current iPod touch is, in fact, the 'newest' iPod. There are no newer ones, regardless of your point of reference.

      --

      -Bucky
    20. Re:oh-so-special? by fuzzyfuzzyfungus · · Score: 4, Interesting

      This and this are examples of the genre.

      I've yet to see much in the way of technical breakdown of the issue; but it is unequivocally the case that they, deliberately, added proprietary secret sauce to the iPod video out process, in order to capture a larger percentage of accessory revenue.

      This article is also worth a look. I doubt that they are doing anything illegal; but Apple is anything but a fuzzy friend of standards with respect to the dock connector.

    21. Re:oh-so-special? by phoenix321 · · Score: 1

      No, you'd want a digital PCM stream. A stationary DA-converter by a respectable supplier should do a much better job than the iPod's own, because they are much less concerned by space, power and form factor constraints.

      Or you could happen to own absolute high end equipment which quality-wise leaves anything portable in the dust.

    22. Re:oh-so-special? by phoenix321 · · Score: 1

      We already have a standard for everything and that is Universal Serial Bus.

      There are class protocols for video/audio streams and whatnot and you can charge the device at the same time. We could beef up the spec for 1000mA, but everything else is there already and has been for years.

      We just get around to use digital video and audio connections, but alas, the MAFIAA forbids.

    23. Re:oh-so-special? by yoshi_mon · · Score: 0, Troll

      Oh?

      http://en.wikipedia.org/wiki/IPod_Touch#Models

      Two models there champ. Why is it you 'proud conservatives' are always such failures when it comes to even the most basic fact checking?

      --

      Really, I know what I'm doing...Ohhhh, look at the shiny buttons!
    24. Re:oh-so-special? by Autonom · · Score: 1

      After reading some of the responses I finally understand the use of Apple's 'proprietary' connector. +1 for engineering foresight. I would like to know what justifies charging $30 for the cable? Beside the connector, the rest of the assembly is nothing special so why the extreme markup from what people should expect to pay for a cable? Trendiness? And, are companies that make iPod charger cables required to leave out the part of the spec that supports syncing in their cables? Patent-lockdown? Personally, I'm tired of paying for trendiness and patent-lockdown. If a standard cable assembly were released to support all the features of the apple iPod cables that could be produced at a competitive price, wouldn't everybody (beside Apple) benefit? I'm glad that Apple exists to raise the bar on hardware manufacturing quality standards, but their profit margins on hardware are akin to what MS does with software.

    25. Re:oh-so-special? by Anonymous Coward · · Score: 0
    26. Re:oh-so-special? by nine-times · · Score: 1

      I would like to know what justifies charging $30 for the cable?

      Why is it that most HDMI cables cost something like $60? Same thing. I remember when Best Buy used to sell printers without USB cables and then charge you $40 for a USB cable (do they still do that?). Anyway, it's the same thing.

      People overcharge for things like cables. I'm sure there are business/marketing reasons behind it, but no reason to single Apple out.

    27. Re:oh-so-special? by santiagodraco · · Score: 1

      At least there's one voice of reason. Thanks Fuzzy.

      It's very humorous to see people saying that Apple goes out of their way to adopt standards. Apple goes out of their way to NOT adopt standards if they can avoid it. The Mac has been one of the most closed platforms on the planet, and the iPhone is another in a long line of the same.

      Apple only cares about standards when forced to care about standards. End of story.

    28. Re:oh-so-special? by DavidTC · · Score: 1

      How would that even work anyway? Cables have no circuitry in them.

      --
      If corporations are people, aren't stockholders guilty of slavery?
    29. Re:oh-so-special? by origis · · Score: 1

      I have an Apple dock that came with my iPod Photo 30G ($500 retail package at the time included USB charger and dock).
      The dock outputs S-Video with the iPod Photo. It does not when using my iPod Touch (1st gen - $400 at the time).

      The iPhoto also came with a cable with a 3.5mm 4-conductor jack on one end and RCA video/2 channel audio on the other end.
      The iTouch won't output video on it either.

      Most of the initial reviews of the iPhone/iPod touch pointed out that Apple had added vid out restriction circuitry on these models.

      So if you are successfully using old video cables on an iPod touch please share the secret with the rest of the world.

      Both the iPods were gifts, by the way. I wouldn't give Apple $10 for one out of my own pocket because I find their contempt for customers insufferable.

    30. Re:oh-so-special? by bucky0 · · Score: 1

      I'm not a dumbass. I have a 2nd gen ipod touch with an external volume control and everything.

      --

      -Bucky
    31. Re:oh-so-special? by bucky0 · · Score: 1

      I don't know what to say, I have the same 3 pronged headphone jack cable that I use to bring over episodes of the office to a friends house that doesn't have cable (also, no reception for that channel), works fine. I'm encoding the video myself, so maybe there's a flag in the fairplay wrapper that switches the "okay to tv-out" circuitry off.

      --

      -Bucky
    32. Re:oh-so-special? by Autonom · · Score: 1

      I agree about overpriced HDMI and USB cables. AFIAK, USB cables are numerous and cheap if the vendor doesn't suck. USB build quality doesn't matter as much because it is only specified for > 15ft runs. For HDMI, I'd assume the actual wiring to be held to a high standard since HD video will show noticeable deterioration over distance and in the presence of RF interference unless resistance kept low and the wires are properly shielded. Of course, I'm no expert, this is just speculation, and I don't know the current price of HDMI because I haven't bought any recently. The comment was in direct response to a comment about the Apple cable. Not singling Apple out just staying in context with the reply.

    33. Re:oh-so-special? by DavidTC · · Score: 1

      What they actually should standardize is spacing between existing standards, so cable can be manufactured that plug into all of them at one. Like a mini-USB port with a 2.5 headset port 3mm to the left or something.

      As for one plug, we're unlikely to ever have a standard that can do everything we're going to need it to do, unless we have it merely a data transfer cable and have the other end negotiate what it wants, and in that case we might as well use USB. Apple was luckily paying attention when it make iPods and make a port with a bajillion empty wires it could later stick video and whatnot on, but that the options are either huge ports or programmable ports.

      And not all their choices were the best. S-video and composite? They are aware that it is trivially easy to turn s-video into composite without any circuitry at all, right? Likewise, the USB and Firewire connections really should be using the same pins and switchable...you're not going to use both of those at once. And the serial connection should be on those wires, too.

      And what they should have done is, on all the firewire connections, a resistor to drop the 12v to 5v, and just designed the device around charging using that voltage. Instead they have 12, 5, and 3.3 for some reason. (Now I'm starting to see why iPods are so expensive.) It's even more silly now that the newest iPods can't connect using firewire, just charge using it.

      A good choice of theirs, OTOH, was the use of a resister to indicate what is connected, which reduces the logic in the connected device.

      --
      If corporations are people, aren't stockholders guilty of slavery?
    34. Re:oh-so-special? by nine-times · · Score: 1

      I'm just saying that everybody pretty much overcharges for cables, so to assign that to Apple and claim that it's because of trendiness or patents seems like a bit of an overreaction, like you're looking for reasons to be angry at Apple and looking for "trendiness" or "patent abuse" to be the reasons.

      And no, there isn't really any reason for HDMI cables to be so expensive. People just overcharge when they think they can. If it's anything more than that, I would guess it's because if they don't mark the cables up a lot, then it won't be worth it for stores to even shelve those items.

    35. Re:oh-so-special? by Anonymous Coward · · Score: 0

      No, you'd want a digital PCM stream. A stationary DA-converter by a respectable supplier should do a much better job than the iPod's own, because they are much less concerned by space, power and form factor constraints.

      Or you could happen to own absolute high end equipment which quality-wise leaves anything portable in the dust.

      Ah, yet another sucker who's bought into the high-end lie.

      Nigh-perfect DA conversion for audio output is not hard these days. Hasn't been for a decade or more. All it takes is a good DAC and a good analog engineer to design the post-DAC circuitry. The components required to do near-perfect conversion (including the DAC) are inexpensive, and require little power or board space.

      Audio-frequency sampling is a solved engineering problem and it's high time people like you realized it. No, there aren't any guarantees that cheap (or expensive) devices have great conversion, but my message is that price and size are not predictors of quality in this realm. You should never assume that just because something like an iPod is small it must have deficient converters. Nor should you assume that it is necessary to spend hundreds of dollars on a standalone converter to get a really good one.

      In fact, there are countless cases where spending lots of extra money for 'high end' gear results in MEASURABLY WORSE performance. Why? Because of silly things like poorly designed external DAC interfaces introducing additional jitter into the word clock of the external DAC. See, high end audiophiles don't typically know how to pick out good gear from bad, so there's little pressure to get the engineering right.

      In fact, sometimes it pays to deliberately do bad engineering. To pick a germane example, one high end audio DAC supplier came up with the genius idea of selling DACs without output (reconstruction) filters. Because filters are bad, mmkay? Never mind that the Shannon sampling theory behind all digital audio reproduction REQUIRES an output filter to reconstruct the original analog waveform, never mind that such a DAC has truly horrible performance, FILTERS ARE BAD, MMKAY? They laughed all the way to the bank, I'm sure. It's so easy to con audiophiles. With the right approach to spewing technobabble you can sell them just about anything.

      High end audio is about separating you from a lot of money, not about quality engineering. Trust nothing from any market segment, always measure. You will find that judicious selection of low end and midrange components for just about anything other than speakers/headphones will get you the best performance money can buy.

    36. Re:oh-so-special? by Grishnakh · · Score: 1

      as opposed to Apple's standards-compliant connector?

      Oh wait - this whole discussion was about there being -no standard-. So I suppose that makes Apple's proprietary as well, huh?

      Now, I agree that at least it's executed pretty well. But who else gets to use it?

      I know plenty of *docks* do... they pay Apple a hefty license fee to be allowed the privilege of adding it to their devices so that people can plug The Most Popular 'mp3 player' into the thing and have it look all stylish to boot. But what other device as the other end of that equation, the bit that's actually in the iPod/iPhone?

      Are you sure that there's a license fee? After all, it's just a connector. The pinouts are available online, and the connectors themselves can be purchased from Digi-Key, Mouser, or other distributors. You can easily build your own device to dock your iPod onto. Why should there be any license fees? There's no intellectual property there to protect. No trade secrets (it's not a secret, as I just pointed out), no patents (sorry, but you can't patent the use of an electrical connector), and no copyright as we're not dealing with intangible property like software here, just a simple electrical connector.

    37. Re:oh-so-special? by Autonom · · Score: 1

      Seriously, you can put your inner Apple fanboy to rest. I was just using the iPod sync cable as an example. If you don't like me putting Apple on the spot then just replace all instances of "Apple" with "Sony" and "iPod sync cable" with "Memory Stick (MS)". The same circumstances apply. The point I was trying make is, if manufacturers made an effort to standardize trivial components like cables and interconnects then everybody would benefit. Example: Theoretical laptop power supply standard - a standard wall-wart for all consumer level laptops, a standard for voltage, maybe a signal line so the adapter could read a hardware level setting for required current from the laptop and adjust accordingly, universal connectors for airplane car and house power like the Dell AC/Auto/Air Power Adapter, and a magnetic connector for the laptop like the MacBook Air because that's just too awesome not to have. For proof of concept, Dell has already switched over to standard adapters for all Dell laptops sometime around the Inspiron 6000 generation and I'm positive Apple has been doing this since waaaaay back when OSX was introduced so isn't this feasible for all consumer level laptops? Imagine buying a laptop and omitting the cost of a power supply because you already have a few lying around (even if your laptop was from a different manufacturer) and the waste generated by the wall warts left over from previous laptops. That would be a huge selling point, not to mention how much it would simplify the manufacturing process. Of course, not everybody would buy into it but they would be at a disadvantage to their competition if they didn't. I'm so glad cell phones are finally being standardized. Now I know that, if I buy mini to micro USB adapters for my phone. I'll be able to use them on future phones, ear pieces, as well as all the other stuff I charge off of them. No more carrying around 5 different wall warts all the time. Why are HDMI so expensive, IDK, look up the spec and see what makes a HDMI 'special'

    38. Re:oh-so-special? by zippthorne · · Score: 1

      And they'll be first to push Bluray when they finally get around to it, too.

      --
      Can you be Even More Awesome?!
    39. Re:oh-so-special? by nine-times · · Score: 1

      The point I was trying make is, if manufacturers made an effort to standardize trivial components like cables and interconnects then everybody would benefit.

      Well, everyone except maybe the manufacturers, which might be the problem. But yes, of course there are benefits to standardization. But then of course, the problem always gets to be: which standard do you try to get everyone to use. And then the next problem is: what do you do when a manufacturer says, "Meh, I don't like that standard, I'm going to do my own thing." And maybe that vendor has a good reason for doing their own thing. Maybe their own thing is way better.

      And that's the problem with standards. Good standards that people follow provide loads of benefits, while good standards that people don't follow are irrelevant and bad standards that people follow can turn into a big problem.

      So though I'd be happy if more electronics could use some kind of a standard charger, I'm not convinced that micro-USB is the best option. I'm also not convinced that some vendors won't choose to use something else, and for good reason.

      As for HDMI, I've looked for details and can't find any particular reason why they're so expensive. They're apparently not hard to manufacture, don't require expensive materials, and they have to be pretty bad or very long before you'll actually have any "quality" issues. I think they're just expensive because they are. People will pay it. Maybe it's because it's considered "high tech" and people will pay extra for them until they get used to the new cables. I don't know.

    40. Re:oh-so-special? by drew · · Score: 1

      but it also can carry audio and video so that, with only a dock, you can output to a stereo or TV.

      Only a dock, and a $50 A/V cable that only they sell...

      --
      If I don't put anything here, will anyone recognize me anymore?
    41. Re:oh-so-special? by nine-times · · Score: 1

      To clarify, I was saying "with only a dock" as opposed to "when attached to a computer". If the iPod and iPhone had a standard USB connection, video out wouldn't be possible without some sort of other computer that could read the data off the drive, decode it, and feed it to a TV via some other AV cable (perhaps costing in the neighborhood of $50 itself).

    42. Re:oh-so-special? by adolf · · Score: 1

      You're describing a connection standard which is very expensive, which if ever it is adopted by a couple of manufacturers, will be untenable in the market and will fail. It's also ugly. And it has issues with stress: A 3.5mm connector can rotate freely, relieving axial stress along the cable, or tensional stress if a right-angle-connector is used, but is otherwise rigid. An iPod connector has a lot of flex in one dimension. A USB connection is pretty non-versatile -- it has no mechanism for stress relief. Any combination of these will be very inflexible, and more likely to break.

      That said, I only personally know two iPods: My iPod Touch, and my wife's second-gen Nano. Both accept anything from 5V to 30VDC for charging, according to the etching on the backs of the units. I charge them frequently from USB ports, but I also have an aftermarket charger which outputs 10.5V -- both work fine.

      If you think you know differently, then please be more elaborate in your conjecture.

    43. Re:oh-so-special? by drinkypoo · · Score: 1

      It's true that the dock connector is *mostly* USB, but it also can carry audio and video so that, with only a dock, you can output to a stereo or TV.

      Funny, my digital cameras seem to have the same functionality over a standard USB connector. You plug in a different cable, you get A/V output.

      Also, the audio put out through the dock is supposedly different from what comes out of the headphone jack (I believe they aren't amplifying the audio from the dock), meaning you can get better quality for outputting to a stereo.

      They aren't amplifying the dock audio? So is it coming out at CPU voltage? The truth is that there is an output amplifier which is responsible for the dock audio output, whether it's the same amplifier as the headphone output amp or not. This amplifier circuit can be built into an audio codec chip.

      So I don't know why the submitter has to turn this into an Apple-bashing thing. Apple actually uses standards pretty often. And often, when they do stray from a standard, it's in order to provide specific functionality

      In this case, Apple ignored the standard and went with their own connector, specifically to produce vendor lock-in.

      --
      "You're right," Fisheye says. "I should have set it on 'whip' or 'chop.'"
    44. Re:oh-so-special? by nine-times · · Score: 1

      Funny, my digital cameras seem to have the same functionality over a standard USB connector. You plug in a different cable, you get A/V output.

      Is that according to the USB standard spec?

      They aren't amplifying the dock audio?

      I'm not claiming to get the whole deal here-- I'm not an audiophile and such things aren't my specialty-- but I've read that the audio fed out through the dock connector is different from what's put out through the headphone jack. Something about amplification, but the idea is, what's coming out of the dock connector would be bad for headphones, but is better for plugging into your stereo. The explanation I read was something about it not being run through a certain kind of amplifier, which meant you got cleaner output for a stereo. Just passing that information along...

      In this case, Apple ignored the standard and went with their own connector, specifically to produce vendor lock-in.
      --
      Don't feed the trolls

      Nicely ironic.

    45. Re:oh-so-special? by phoenix321 · · Score: 1

      Then I assume the post-DAC circuitry is where the hard science lies. I'm not talking about high-end audiophile technobabble here, but the line-level outputs of a really cheap cd player and that of a medium-prized one's sound different. We're a long distance below Mark Levinsons, tube amps, specially-wound speaker cables and gold-plated power cables, but in consumer territory.

      This difference is noticeable between phones, too. An iPhone has a higher quality DAC and post-DAC implementation than a cheap Motorola, that's a fact I invite you to check for yourself.

      And I'm still not convinced that devices which include a wireless radio don't interfere with analog signal lines. I'd like to see an optical TOSLINK between the device with the broadcast antenna and the actual amplifier, but digital audio over some kind of copper link could be acceptable as well. I just don't want to hear any interference from the phone's transmitter and that's probably impossible to solve perfectly when low-level audio circuitry runs only a few inches distant from the antenna, on the same circuit board, even.

    46. Re:oh-so-special? by drinkypoo · · Score: 1

      Don't feed the trolls

      Nicely ironic.

      It's true! I should never have left that comment, which only fed some Apple fanboi's fervor.

      --
      "You're right," Fisheye says. "I should have set it on 'whip' or 'chop.'"
    47. Re:oh-so-special? by Richy_T · · Score: 1

      The new Nanos will not charge with firewire either.

    48. Re:oh-so-special? by DavidTC · · Score: 1

      I'm failing to see how a USB+2.5mm would be weaker than a USB by itself. (Incidentally, 2.5mm wasn't a typo. I was talking about the even smaller headset jack that cell phones, and some wired phones, use. The one with audio in.)

      The point is to have a standard 'docking station' cable for mp3 players and phones to plug into and recharge and pipe audio elsewhere, for cars and alarm clocks and stuff. There is not intended for 'stress' or any movement at all.

      There should also be some way to detect this so as to switch off the internal amp. Maybe if you plug in charge-only USB and the headset within a quarter second of each other, it should assume you've docked it. (And mp3 players might just assume it regardless, as they'd probably have a 3.5mm plug somewhere else for headphones, and the 2.5mm next to the USB would only be for line out.)

      Just headsets, of course, could plug into just the headset plug, by themselves. They'd be no more restricted than currently are. Same with USB. That's the point of using the existing plugs and just putting them a set distance from each other...it's no more expensive than currently, so will get adopted. Unlike any new standard, which wouldn't. (As far as I know, the iPod plug isn't patented or anything, but I've never seen another device designed to plug into a dock.)

      Both accept anything from 5V to 30VDC for charging, according to the etching on the backs of the units. I charge them frequently from USB ports, but I also have an aftermarket charger which outputs 10.5V -- both work fine.

      Which, um, was the point about my 'why iPods are so expensive' comment. That was a fairly silly design choice on the part of Apple, to have so many voltage inputs, instead of just one. In short, 'Logic' said that Apple's iPod connector was a very good design. I said, in some ways that's good, but there are a few very obvious stupidities in it. Accepting three different voltages to charge with was just one of them, along with dedicated pins for said voltages, (And different grounds for each one!) and it's even worse based on what you say because apparently one of those pins can accept a random voltage.

      Likewise with s-video and composite outputs, when s-video can be turned into composite simply by wiring the two s-video lines together with a 10 cent low-pass filter in it. That's why it's called composite. It's a composite of the luminance and color, which are the two wires in s-video. (Plus two grounds.) Apple should have just provided s-video, and any 'video dock' or plug that wants to provide composite can trivially make their own.

      --
      If corporations are people, aren't stockholders guilty of slavery?
    49. Re:oh-so-special? by geekoid · · Score: 1

      Apple tried to bury USB for a very long time. They only opened up to it when the iPOD went to windows.
      PC's were USB for a long time. Firewire didn't catch on to the degree Apple had bank on them. Apple is generally a very nimble company, so they can change directions quickly. Basically over night, firewire becasme a whisper, and USB was the new black..or whatever.

      --
      The Kruger Dunning explains most post on /. http://en.wikipedia.org/wiki/Dunning%E2%80%93Kruger_effect
    50. Re:oh-so-special? by geekoid · · Score: 1

      Yes, but only 1 is the NEWEST, champ.

      You just had to make a conservative jab, didn't you? So now everyone will think you are a liberal, when you are just a moron.
      Yes, I see the obvious joke there, and it's not true.

      --
      The Kruger Dunning explains most post on /. http://en.wikipedia.org/wiki/Dunning%E2%80%93Kruger_effect
    51. Re:oh-so-special? by adolf · · Score: 1

      I guess the point is this: I often use my phone in the car, with it on a mini-USB charger. This often involves putting the phone to my ear, for quick calls where I don't want to goof around with powering up a Bluetooth headset. The coiled charge cord does create a fair bit of connector stress as I stretch it out to my driving position. Usually, it relieves this stress by unplugging itself -- which isn't a very good solution.

      Throwing an additional connector on there gives the stuff even less opportunity for stress relief. It doesn't really matter, to me, if it's 2.5mm or 3.5mm. These are just my opinions as a wire and connector snob. :) (And if I had my way about it, every modern connector would be round, and resemble either a coaxial DC plug, or some variation on the 2.5mm/3.5mm/.25 inch TRS standard. Every. Single. One. No more flashlights and cramped spaces when plugging in connectors on the back of gear.)

      I didn't realize that iPod's have three different sets of contacts for different voltages. But looking at the the pinouts, it really is a stupid design. The S-video thing is just as stupid -- AFAIK, one doesn't even need a low-pass filter to sum the two signals together with good quality.

      But just accepting different voltages, I consider that to be a good thing. I like being able to shove random voltages into devices without them blowing up, and I'm happy to pay extra for that.

    52. Re:oh-so-special? by DavidTC · · Score: 1

      If you were just charging it, I'm failing to see why it would be plugged into a docking station. OTOH, if you car had a docking station, you would not need to pick it up...you'd answer through the car speakers or whatever.

      I have the feeling I'm not getting through here. I don't want any changes in existing headsets or chargers whatsoever. However well those work, they would continue to work. Every single device, every single cable, would continue to function the same. It would work exactly the same in your car with your phone, pretending your phone had done this.

      I would just like the plugs spaced in a standard manner so that it was possible to design one plug to go into both at the same time, for when, and only when, it would make sense for the device to be plugged into something that both wants audio and to charge it.

      Right now such devices don't even exist for anything except for iPods. I'd like every stereo that has a iPod dock built in to also have an inch of cable sticking out that can plug into such a plug. And the same with car stereos. And cigarette lighter FM transmitters.

      Oh, that reminds me. This standard should also specify that shorting the microphone input direct to audio ground means the dock doesn't have a microphone, which would let cell phones plug into stereos, car or otherwise, and use them to play mp3s and the output from an call, but use the phone mic for input. (Presumably they'd switch to speaker-phone mic.)

      The S-video thing is just as stupid -- AFAIK, one doesn't even need a low-pass filter to sum the two signals together with good quality.

      I once wired a convertor simply by twisting the ends of a s-video cable to the ends of a RCA cable. But then I found one for 70 cents somewhere, s-video female to rca male, so I can stick it on the end of my six-foot s-video stereo audio cable if I need to hook my laptop into TV. I've always wondered if it's 100% straight through or they have the little resister layout to clean the signal up a little. It works backwards just fine, which makes me suspicious it's just straight through.

      And speaking of stupid plugs, in my universe s-video, the worse plug of all, would not exist. Damn that plug is stupid.

      I'm with you that all plugs should be roughly like the 3.5mm plugs. USB should have been like that. Well, it does carry power...maybe it should be more like those DC adapter plugs, with the positive current in the middle so it can't touch things, but with three strips on the outside for ground and +/- data. And all the cables should have been female at both ends. Most plugs about 4mm wide, but a tiny one that's 2mm for small stuff.

      It's sorta funny they worked so hard on the USB plug, making it impossible to misorient, but a) screwed up the smaller sizes so much we've had half a dozen different designs, when all they needed was one big one and one little one, (and inexplicable had a 'B' plug for no reason.) b) failed to realize that an easy way to stop a plug from being misoriented was to make it plug in in any direction, and c) inexplicably made it exactly fit in a RJ-45 jack. (Even making it slightly smaller would have helped.)

      --
      If corporations are people, aren't stockholders guilty of slavery?
    53. Re:oh-so-special? by adolf · · Score: 1

      And speaking of stupid plugs, in my universe s-video, the worse plug of all, would not exist. Damn that plug is stupid.

      It's not just [mini] DIN connectors which suffer this way, though those (ALL OF THEM) are an abomination: A round connector with no purpose in being round. There's a few other round connectors that I run into from time to time which are equally difficult to orient: Multi-pin Hirose connectors come to mind immediately. Most folks these days know Hirose's connectors by their proliferation of neat, small, reliable, good, snap-ring U.FL coaxial connectors on WiFi radios. I, however, know them because of their tiny, difficult-to-orient, and easily-damaged 3- or 4- pin that frequent wireless lapel microphones. I've replaced more than my share of mangled Hirose microphone connectors.

      If a connector is to be round, it ought to be either be capable of orienting in any direction, or at least have some positive reason for being round. The Amphenol-sourced connectors on the engine harness of my 1995 BMW are predominantly round, and are a little hard to line up, but they include a slick-as-hell and infallible twist-lock mechanism which more than makes up for their orientation difficulty, and which makes removal a breeze. I far prefer it to, say, GM's standard connectors, which (although more waterproof) involve locking plastic tab and a certain amount of prayer and the blood of a chicken during disassembly (lest the tab be broken off).

      The coaxial DC plug is a good design, in modern implementations. Dell has commonly extended it on their laptops with an additional center pin (for data, presumably), and that seems to work just fine, but there's no good reason why a similar connector couldn't be extended to carry power, two grounds, and two data lines. Or, with the addition of a soft-but-positive-lock retention mechanism, data(s), power, ground(s), and audio/video.

      Sometimes I think I should go ahead and draw such a thing up on paper and submit a patent for it, but then I look at my bank account and realize that there's no way I could afford to do so.....

      But I digress. I guess I'd rather see a single, monolithic, SCART-like (but orientation-flexible) connector on mobile devices, than any confluence (or even standardized spacing) of various and sundry connectors.

      If an adjustment in the market is to be made, I, for one, hope that it is the last one we'll endure for the foreseeable future.

  10. No legislation required.... by try_anything · · Score: 5, Funny

    The threat of legislation was enough.

    I'm sure the handset makers are deeply saddened by this. Clearly, this unwelcome meddling by government will hurt consumers by ending competition in this vital technical matter. Why, instead of buying the latest high-tech replacement cable custom optimized for advanced synergy with their handset, people might replace a lost cable with an abandoned, misbranded, maybe even second-handed cable from an older handset. This could cost consumers literally incalculable amounts of synergy and innovation. Why won't the government just let capitalism work?

    1. Re:No legislation required.... by fuzzyfuzzyfungus · · Score: 2, Funny

      Sounds like we need an astroturf group to take up the cause. I wonder if "Consumers for handset innovation" is taken?

    2. Re:No legislation required.... by evohe80 · · Score: 1
      I suppose you're kidding, right?

      I'm sure the handset makers are deeply saddened by this. Clearly, this unwelcome meddling by government will hurt consumers by ending competition in this vital technical matter.

      Vital techinical matter? It's just the charger. They could use additional ports if they want to. And it may be financially wise for the companies: they will charge you the same for the phone, and they won't have to give you another charger. I guess not that many people loose their chargers and have to buy additional units.

      This could cost consumers literally incalculable amounts of synergy and innovation. Why won't the government just let capitalism work?

      Mixing capitalism with a "standard" charge port doesn't make any sense. And I don't see any great amount of innovation coming from the charge port.

    3. Re:No legislation required.... by Anonymous Coward · · Score: 0

      Why won't the government just let capitalism work?

      Because it doesn't?

    4. Re:No legislation required.... by yoshi_mon · · Score: 1

      LOL, 4 posts and counting that did not get the sarcasm. Well done sir.

      --

      Really, I know what I'm doing...Ohhhh, look at the shiny buttons!
    5. Re:No legislation required.... by db32 · · Score: 2, Insightful

      I know! I was going into the comments to see what other amusing jokes may have been made and was stunned to see all of these people frothing about the post. I don't know if I should applaud the GP or be deeply depressed by so many people not getting the PAINFULLY obvious sarcasm.

      --
      The only change I can believe in is what I find in my couch cushions.
    6. Re:No legislation required.... by koehn · · Score: 1

      This could cost consumers literally incalculable amounts of synergy and innovation.

      Just because the amount of "synergy and innovation" is incalculable, that doesn't mean it's very much. Of whatever "synergy and innovation" is.

      Why won't the government just let capitalism work?

      Hear, hear! Just look what deregulated capitalism has done for the financial markets!

    7. Re:No legislation required.... by daveywest · · Score: 1

      Why won't the government just let capitalism work?

      Because people like Bernie Madoff are capitalists.

    8. Re:No legislation required.... by Autonom · · Score: 1

      Because the scope of capitalism is much too complex for the average consumer to grasp. How are they expected to wrap their heads around complex and powerful subjects such as synergy when they spend all their time adorning their Al Gore shrines and praying to Buddah in a haze of bong smoke. We need more commercials marketing and flashy stuff to teach the peasants the error of their ways. We need commercials running on daytime television, kids programming, and during American Idol to teach that capitalists are bringing society into a new era. As long as the consumers can stay the course by emptying their credit accounts on goods and free the banks of the burden they created when they quit paying their mortgages we'll all be fine. The people just don't realize. The market, the economy, and the stock market are all the same thing. USB chargers are made my Mexicans and therefore are stealing jobs from good god fearing Americans, and standardization is evil. :: Cue Team America Theme Song:: Giggidy...

    9. Re:No legislation required.... by DavidTC · · Score: 0, Redundant

      EPIC TROLL.

      --
      If corporations are people, aren't stockholders guilty of slavery?
    10. Re:No legislation required.... by loraksus · · Score: 1

      Yeah, and now we'll have monster cable phone chargers on the same shelf as the phone. For a reasonable price of only $80.

      --
      1q2w3e4r5t6y7u8i9o0pqawsedrftgthyjukilo;p'azsxdcfv gbhnjmk,l.;/
  11. Voltage and current by goombah99 · · Score: 1

    Because of the way USB is designed. If your device does not get attached to a driver, it is stuck on low power mode, which is not sufficient for charging a phone. When a driver is attached, the driver can ramp the port up into high power mode and charge the phone.

    I take it this means that if I have a USB hub then my cell phone is always on low power charge mode. Otherwise I don't see how a computer could decide how much current to supply when multiple devices are attached in parallel via a hub.

    So charging times must be dramatically reduced if I use a direct connection to the computer USB port rather than indierectly through a hub?

    A second question is, why don't devices supply their own drivers when you plug them in?

    --
    Some drink at the fountain of knowledge. Others just gargle.
    1. Re:Voltage and current by DrLang21 · · Score: 1

      The device's USB descriptors that are sent to the computer when a device is attached should tell the computer how much current it can be allocated. If your USB hub is externally powered, then current allocation shouldn't be an issue. If your hub is port powered, then your devices are automatically limited.

      --
      I see the glass as full with a FoS of 2.
    2. Re:Voltage and current by Otto · · Score: 3, Insightful

      I take it this means that if I have a USB hub then my cell phone is always on low power charge mode. Otherwise I don't see how a computer could decide how much current to supply when multiple devices are attached in parallel via a hub.

      USB hubs are more than mere wiring, they have to have some minor amount of intelligence. There's two basic kinds of hubs: bus-powered and self-powered. Self-powered hubs have a separate power source (wall outlet, etc) and are allowed to provide up to 500 mA to devices connecting to them, which is the same as the high-power mode for normal USB ports. This allows those devices to charge. Bus-powered hubs can't do this, they're basically limited to the amount of power they get from the USB port itself.

      A second question is, why don't devices supply their own drivers when you plug them in?

      Because that's not possible in the USB specification. The "no-driver" devices really use a default set of drivers that have their characteristics predefined in the USB specs.

      Also, it's a bit of a security risk for a device to be able to send executable code to the PC and actually have it get executed.

      --
      - Give a man a fire and he's warm for a day, but set him on fire and he's warm for the rest of his life.
    3. Re:Voltage and current by Anonymous Coward · · Score: 1

      Interesting, so should it be possible, in principle, to take a self-powered USB hub, plug it into the wall without plugging it into a computer and use it as a charger for something that charges via USB?
      It never occurred to me to try it.

    4. Re:Voltage and current by compro01 · · Score: 1

      No, an unpowered hub is a single device as far as electricity is concerned, but it's multiple devices according to the software. Everything plugged into the hub would be limited to 500mA total. If you only have one device on the hub, it's functionally identical to having it directly connect, aside from some small amount taken by the hub's electronics, but if you had, say, 4 devices plugged into the hub, they would need to keep their draw below 500mA combined. if 2 of those both tried drawing 300mA at the same time, it probably wouldn't work.

      As for the driver, how is the device going to communicate with the system to provide the driver unless a driver is already installed? It's a chicken-egg loop. Obvious solution would be to have a generic basic driver (like the now ubiquitous USB mass storage driver used for flash drives) to would allow for driver acquisition from the device, but you'd first need to standardize that and then get that driver implemented and widely distributed.

      --
      upon the advice of my lawyer, i have no sig at this time
    5. Re:Voltage and current by compro01 · · Score: 2, Informative

      Yes. I have a small generic self-powered USB hub that does exactly that. Worked nicely for charging by Motorola KRZR, at least until I lost that phone.

      --
      upon the advice of my lawyer, i have no sig at this time
    6. Re:Voltage and current by Small+Hairy+Troll · · Score: 1

      Also, it's a bit of a security risk for a device to be able to send executable code to the PC and actually have it get executed.

      Ha. The joke is on you. You have obviously not yet watched "Space Buddies".

    7. Re:Voltage and current by Anonymous Coward · · Score: 4, Interesting

      Posting as AC because i can't log in from work, so i hope this gets seen. I have a USB modem from novatel wireless that has a small amount of memory onboard, and when plugged in mounts itself as a cdrom drive under windows or mac, and pops up to install it's own drivers. (under linux it uses the standard kernel driver for CDMA modems, no extra driver needed). I think it's a pretty cool idea, no matter what OS you're using, two clicks at most from plugging it in and it just WORKS, no driver cd, no needing to download drivers, nothing.

    8. Re:Voltage and current by DavidTC · · Score: 1

      The problem appears to be is that the base driver for various USB protocols includes no way for the device to say 'I am a standard USB flash drive, except I'd like 500mA'.

      Probably the flash drive spec does that, for USB floppies and hard drives, but my point is apparently a lot of drivers don't.

      It seems rather idiotic it wasn't part of the USB spec, independent of what device is plugged in, or even if it has a driver at all. Random Futuristic Device, without a driver, should be able to, as long as it's USB, plug in and ask for 500mA, and get it, even if it's 'Unknown Device'.

      Of course, devices can fake it. They could pretend to be single-port USB hubs, for example, and could get 500mA to the 'hub' regardless of what device is plugged into it. Actually, I think there's a 'multi USB device' they can use too, although for all I know that could be one that doesn't have the ability to ask for 500mA.

      --
      If corporations are people, aren't stockholders guilty of slavery?
    9. Re:Voltage and current by Cillian · · Score: 1

      Yeh, I've used a similar wifi dongle from orange, I believe

      --
      -- All your booze are belong to us.
    10. Re:Voltage and current by brain159 · · Score: 1

      The Three 3g/hsdpa dongle (which is really a Huawei modem) does the same trick - plug it in, Windows sees a USB CDROM drive and (unless you've disabled it) will autorun the driver installer.

      The same technique is used more generally by "U3" flashdisks (from Sandisk, primarily). There's a way to remove that behaviour from the device - and quite probably a way to make it launch your arbitary attack-code instead of the U3 Launcher.

  12. Re:Frosty Pistoon! by Anonymous Coward · · Score: 1, Funny

    Funny. Looks like we replaced one monkey with another. And this one is hell-bent on flinging shit at the economy.

  13. they'll just make the charger a usb "host" by Anonymous Coward · · Score: 0

    I believe some vendors already do this: standard USB connectors, but the charger has "host" silicon, and so the phone refuses to charge when not used with a "genuine" charger.

  14. Simple solution -- multiple ports by jollyreaper · · Score: 1

    My Palm has a usb connector that can provide data from the computer and also a charge but it also had a high-power connector with wall wart that could charge it fully in 20 minutes. Makes sense since usb charging can take up to four hours for a fully discharged battery.

    I've seen hybrid connectors on some devices where you have your mini-usb to the left and the proprietary crap on the right. Plug in the proprietary connector, you get everything. If you're on the road and just need some juice, any standard mini-usb cable works fine.

    If you absolutely cannot possibly put a hybrid connector on the bottom, use the proprietary one there and stick a usb on the side, done and done.

    The real reason why nobody has standardized is there's no external force like the government telling them to do so and there's so much money to be made forcing people to buy ridiculously over-priced peripherals and accessories.

    Take mp3 players for example. If it cost $100, I bet we could easily drop another $100 getting the accessories. Screen sleeve, car charger, audio adapter for the radio (fm transmitter are the most expensive), etc. A cigarette adapter will set you back $30 easy and the bastards cost less than a buck to make. It's the same bullshit you saw with the big box stores selling you the printer for a reasonable price and charging $20 for the $2 data cable not included in the box.

    --
    Kwisatz Haderach
    Sell the spice to CHOAM
    This Mahdi took Shaddam's Throne
    1. Re:Simple solution -- multiple ports by DavidTC · · Score: 1

      Hell, that's nothing. When you buy a printer, stores will try to sell you a $2 dollar data cable for $20 when it is in the box. The second biggest pick of advice I give when buying computer accessories(1) is do not, under any circumstances at all, buy a cable. Even if the clerk explictly says you need one. Even if they have a sale. It will almost also come with one, and, if it won't, I'll give you one. If it turns out you do need it and I don't have a cable of that kind, I'll drive to a store and buy the damn thing for you the next day. I've had to give out a cable exactly once, I've never needed go buy one.

      Or the analogy I make: Cables:electronic store::soft drinks:fast food places. They sell you stuff at a reasonable markup, but they also have drinks/cables that are dirt cheap that they sell at absurd markups.

      On the subject of MP3 players, I buy cheap-ass MP3 players, and, amazingly, they sound just like iPods. Better, depending on the headphones. Spend 30 dollars on headphones and 10 on an mp3 player instead of 10 dollars on headphones and 200 dollars on an mp3 player.

      Oh, and the best mp3 player I ever found for the price was a cigarette lighter FM transmitter with the ability to read MP3s on SD cards and USB flash drives. It wasn't much more expensive than cheap FM transmitters, and it plus a few SD cards together were a good deal cheaper than the FM transmitter Apple wants to sell people to go with the iPod.

      No chargers, unlikely to get stolen, doesn't fall in the floorboard, cheaper than an accessory of the iPod. I got it Frys, the automobile section, I've forgotten the brand, and last I checked they'd actually stopped having that model and had one with just a USB flash drive plug and no SD slot.

      1) The biggest piece of advice when buying a printer is to not compare the price of the printers. Compare the price of the printers plus four ink cartridges.

      --
      If corporations are people, aren't stockholders guilty of slavery?
  15. China and South Korea already did this, no? by Dekortage · · Score: 3, Informative

    We discussed this issue back in 2006, though for a different continent. But if South Korea and China can do it, why not the rest of the world? Seems like it would be a win-win for manufacturing, if nothing else.

    --
    $nice = $webHosting + $domainNames + $sslCerts
    1. Re:China and South Korea already did this, no? by Dekortage · · Score: 1

      FYI, yes, I see that TFA has a link to the Chinese government mandate.

      --
      $nice = $webHosting + $domainNames + $sslCerts
    2. Re:China and South Korea already did this, no? by MonkeyOnATypewriter · · Score: 1

      And we discussed yesterday that EU wants some common standard for charging mobile phones.

      http://mobile.slashdot.org/article.pl?sid=09/02/16/206213

      BTW: dupe ?

    3. Re:China and South Korea already did this, no? by try_anything · · Score: 1

      We discussed this issue back in 2006 [slashdot.org], though for a different continent. But if South Korea [phonescoop.com] and China [textually.org] can do it, why not the rest of the world?

      Do we really want to mire ourselves in a soon-to-be-outdated technology standard? While South Korea has stood still on cell phone cable technology, the United States has forged ahead with a dizzying array of connector options. As a matter of principle, regulation (by government or voluntarily through industry consortia) shouldn't mandate where companies are allowed to innovate and where they are not.

      In any case, the fact that American consumers (who have the freedom to do so) have been buying these specialized connectors and cables for years proves that consumers want them. That's common sense as well as basic economic theory -- which some Slashdotters seem to understand better than others.

    4. Re:China and South Korea already did this, no? by Dekortage · · Score: 1

      the fact that American consumers (who have the freedom to do so) have been buying these specialized connectors and cables for years proves that consumers want them. That's common sense as well as basic economic theory -- which some Slashdotters seem to understand better than others.

      I honestly can't tell if you are being sarcastic or serious.

      Suppose that, when you bought a cell phone, you were given a choice between (1) using a power adaptor plug that you already owned and fit other devices you owned, and (2) buying a new power adapter that only worked with this one single new device. Everybody would choose #1. The only reason that Americans have always chosen #2 with cell phones, is because there has never been a choice #1.

      --
      $nice = $webHosting + $domainNames + $sslCerts
    5. Re:China and South Korea already did this, no? by Anonymous Coward · · Score: 0

      Yup! In Korea you never have to worry about dragging along your outlet/car charger. You just ask a friend/coworker to use theirs. Its so convenient.
      AND
      Third party manufacturers don't have to spend time/money on studying which brand has the largest market share and/or make a variety of products that the same thing. They just simply make what eeeveryone is using.

  16. Nokia need t get this message by Anonymous Coward · · Score: 0

    I recently got an Nokia E71. They have a micro USB port, but cannot charge it via that port. They really need to enable user to sync and charge via the micro USB port like Samsung.

    1. Re:Nokia need t get this message by DavidTC · · Score: 1

      My Samsung doesn't have a USB port at all, it's got a weird plug that is headset and USB. (And it does wall charging, but possibly that's just via 'USB'.)

      It's an A717, a few years old, though.

      --
      If corporations are people, aren't stockholders guilty of slavery?
  17. Will they really? by rootnl · · Score: 1

    What prevents them from still requiring a proprietary signal from the usb port or psu to put the device in charge mode. Hence requiring a "certified" power source. Take for instance the PS3 controller, it doesn't charge from a regular mini usb power supply.

    --

    We are the people our parents warned us about.
  18. Apple has nothing to be ashamed of here by peacefinder · · Score: 0, Flamebait

    While the iPhone uses Apple's own dock connector, that connector is only one jump away from USB for both charge and data, plus it includes extra features. (Audio and TV out.) The iPhone package ships with a USB-to-dock cable, and (in the US) a 110VAC-to-USB adapter. They've also kept the dock connector pretty stable, with the only major change being the switch from Firewire to USB - and many devices along the way could use either version.

    I'd of course be delighted if everyone would standardize on one power+data connector for phones, but until that day comes I think Apple has no reason to be ashamed of what they've got now.

    --
    With reasonable men I will reason; with humane men I will plead; but to tyrants I will give no quarter. -- William Lloyd
    1. Re:Apple has nothing to be ashamed of here by dave420 · · Score: 1

      Apart from them stopping third-party manufacturers from making dock-compatible accessories, and charging an arm and a leg for replacement cables. Apart from that, sure. Great jerb.

    2. Re:Apple has nothing to be ashamed of here by Alan+Shutko · · Score: 1

      I don't know how much they charge third party mfrs to make compatible devices, but they aren't flatly stopping third parties from making things. The dock ecosystem is a great part of having an iPod. I've got a Kenwood car receiver that you can plug in a USB device. It'll work with USB Mass Storage devices, but with an iPod it'll keep the same place you were in when you listened before, you'll have your last played synced, you can use the smart playlists you have on your iPod. Then I can take it out and plug it into a portable set of speakers and it can remote control the ipod, etc. Some HD radios can tag songs and drops the tags on your iPod so iTunes can show you what they were and let you buy them.

      It's true, all of this is controlled by Apple, but they allow all sorts of compatible accessories, often at really cheap prices. I can get a third-party dock cable off amazon for about $6, which I don't find excessive.

    3. Re:Apple has nothing to be ashamed of here by socsoc · · Score: 1

      Wasn't Kenwood (maybe Pioneer) the first aftermarket stereo to support iPod? You really think either company didn't work with Apple?

  19. Id like this for all small electronics by xSauronx · · Score: 1

    I bought a Sansa Fuze recently, because it fit all the criteria I had for a new mp3 player:

    cheapish (4gb for $70)
    Small/thin
    Video playback
    Expandable storage (via SDHC)
    good codec support (ogg, flac, mp3, etc)
    long battery life (~24 hours on a charge, for audio)

    the *only* think i dont like? proprietary usb cable. what an annoying thing to do on a nifty little device.

    --
    By and large, language is a tool for concealing the truth. -- George Carlin
    1. Re:Id like this for all small electronics by Fallon · · Score: 1

      It's a standard mini-USB port with a couple extra pins for audio (headphones) and the FM antenna in the headphones. It's actually a VERY nice solution. You get the standard mini-USB connector which works with all standard mini-USB chargers or cables, but if you plug in the special headphone cable, you get audio.

      Personally I'd prefer a 3.5mm jack in addition to a mini-USB, but at least they support the mini-usb plug/charging standard very well.

  20. Sony and Apple by telchine · · Score: 1

    I'm suprised Sony have backed it. Not at all suprised that Apple haven't!

  21. No thanks by name_already_taken · · Score: 1

    Well no. Uber-phones just need an USB connector and appropriate drivers to let them feed audio/video/files/network/whatever they feel like through it. No need for special drivers and wires ! Just standardize on protocols (like Bluetooth did, but USB is also quite good at that) and you have one connector for all your needs.

    That would require every device you plug the phone or iPod into to be a USB host. That's going to cost a lot more.

    I have a Nokia phone that can output video and stereo audio through its headset jack. It also has a standard mini USB port, and a barrel connector for the charger. I'm pretty sure it can charge through the USB connector, but since Nokia already had a charger that fit their other more basic phones, they elected to use that so people could use their older Nokia car chargers and so on.

    But, getting back to what you were talking about:

    How do you propose I install drivers on my TV and stereo, both of which lack USB ports?

    Instead of a cheap video cable to show video or photos to your relatives, you would need a clunky thing that acts as a USB host and acts as a video adapter. That sounds like a very special wire! And it seems like a step backwards.

    --
    Putting moderation advice in your .sig lowers your karma!
  22. Re:the oh-so-special adaptor is more than just USB by PJ1216 · · Score: 1

    The iPod dock connector can't carry more than just USB at once. It can carry USB *or* Firewire. But it doesn't do both simultaneously. The purpose of the connector is so it doesn't need two separate ports... one for firewire, one for USB. I don't think USB and Firewire ports are interchangeable, but I could be mistaken. In all honesty, Apple should just drop Firewire support for iPods and iPhones since they really don't need it.

  23. You mean like.. by raehl · · Score: 1

    ..a wall charger with a micro-USB connector on the end of it?

    Just because the connector is micro-USB doesn't mean the other end has to plug into a computer USB port.

  24. Re:the oh-so-special adaptor is more than just USB by illegalcortex · · Score: 1

    Looking at the pinout, it also carries analog video and audio. Firewire is for only six pins out of the 30.

  25. Motorola uses micro USB format but not micro USB? by karl.auerbach · · Score: 1

    I've had Motorola phones that have a micro USB connector but refuse to accept a charge from anything except a Motorola charger.

    I would hope that this agreement to use USB goes further than simply adopting the physical connector.

    It should be possible to attach to any convenient USB plug - without benefit of drivers - and recharge a phone.

  26. Apple connector by Anonymous Coward · · Score: 2, Insightful

    While I too wouldn't mind a more standard charging connector, I see no reason why a mini-usb for getting power, AND a custom plug with more ability than simply power and a slow one to one data comm protocol for one host (the PC)

    http://pinouts.ru/Devices/ipod_pinout.shtml

    That link shows both the iPod and iPhone connector. I am actually in the process of designing some nice attachments to the iPhone using a combination of USB, firewire, and a ttl serial port.
    None of those things outside of the one USB connection would be found in USB.

    Mini-USB won't let me get composite video out, or audio out to plug in my car stereo, or audio IN.

    However, the practice of bastardizing the USB jack so it is only useful for power, and rare (or nonexistent) data purposes, totally needs to die.

    I mean, I can understand if the phone doesn't Have those abilities at all, then of course the USB jack shouldn't. But just using iPhone as an example, plugging it in with the USB connector only makes it show up as a camera device to access pictures. Nothing else. And those antics are BS and should go.

    1. Re:Apple connector by Dog-Cow · · Score: 1

      To be fair, the iPhone uses a Unix filesystem, and is not intended to be modified by end-users. Both of these would cause support problems that Apple would be better off without.

      That said, I'd love if my iPod Touch would expose at least one partition as a regular flash/USB drive.

    2. Re:Apple connector by argent · · Score: 1

      Don't you have to pay Apple a fee to use this connector?

      Also, they seem to have decided to punt Firewire in future products, so the high speed interface isn't going to remain an advantage.

      Apple is to be lauded for sticking to a consistent connector and form factor, but there's no chance of this becoming a long term standard. If there's a micro-version of USB3 available, that should alleviate your performance fears.

      Also...

      But just using iPhone as an example, plugging it in with the USB connector only makes it show up as a camera device to access pictures. Nothing else.

      It doesn't show up as a USB Mass Storage device, like my iPod Shuffle does? o_O

    3. Re:Apple connector by gordguide · · Score: 1

      " ...Don't you have to pay Apple a fee to use this connector? ..."

      What Connector? Micro USB? No. Mini USB? No. The iPod connector? Standard Industry connector. No fee.

      If it's "Firewire" you're talking about, it depends. Apple gave the specification away to the IEEE, so if you call it IEEE 1394 and implement it, you pay nothing.
      SONY gave the revised specification away to the IEEE (Sony's version is 4-pin; it just eliminates the 2 power connectors), so if you don't call that version iLink and instead call it IEEE 1394, you pay nothing.

      However, "Firewire" is an Apple trademark for IEEE 1394, which they developed, and "iLink" is similarly a SONY trademark. So, if you call it either of those, you need Apple's or SONY's permission to use the trademark, which could involve a licensing fee, or you use the weasel words "compatible with ... " and include the note that they are trademarks, and pay nothing.

    4. Re:Apple connector by argent · · Score: 1

      What Connector? Micro USB? No. Mini USB? No. The iPod connector?

      The iPod connector, of course. That's the one the parent article was referring to. There's this thing called "context", you want to try using it?

      Sheesh.

      I thought there was a fuss a while back about Apple charging accessory manufacturers a fee to use this connector.

      What was that about?

    5. Re:Apple connector by santiagodraco · · Score: 1

      Huh? How does using a standard connector, if only for power, equate to "antics" or "bastardizing"??? I think you are sensationalizing for affect. And you are far off the mark. About the only thing you said that made sense is video out, and certainly the USB pinouts were not designed to carry video out, audio out, pc interface and power all at the same time. The Apple doc connector is, fine. But that has zip to do with the use of the mini USB connector for power AND other data services.

      So your phone shows up as a camera only. Your ignorance shows. Apple could very well adopt that cable to sync as well.

      Now what apple COULD have done (and won't as it impacts their ability to control the aftermarket) is add a mini USB connector that could be used or sync/power. This would allow customers the flexibility of using the standard cable for the most common functions. If you want video then use the Apple connector. I doubt anyone would complain.

      But then again we don't expect Apple to adopt the industry standard when it will impact their control, do we?

    6. Re:Apple connector by DavidTC · · Score: 1

      I agree. My phone doesn't have a USB plug on it, but when I use the data cable and plug that into USB I get two choices: Modem and some weird data mode.

      First of all, modes? Why not having it be one of those USB devices that shows multiple devices, like a USB headset I have that also has input buttons, so it shows up as a two devices, one a sound card and one a HID?

      My phone has two data storage devices, the internal memory and an miniSD card, and it should be showing up as two 'flash drives'. I'd understand if some of the phone's internal memory was not accessible that way, but the browseable-within-the-phone part should be. I should plug it in, and Windows should magically get two new drives. (And a new modem.)

      Instead, I have to use some application called 'BitPim' that works poorly, or their custom software. Simply to get pictures off the phone and put mp3s on. It's so much work I usually just make sure they're on the miniSD card and pull that out and read it! What the hell's the point of the cable?

      If they additionally want to expose some interface to edit the address book and whatnot, fine, but there are standard ways to expose a filesystem over USB, and my phone doesn't appear to do that at all.

      The only thing I actually can easily do using the cable is a dialup connection to the internet, and as both my computer and phone have bluetooth, I just use the bluetooth instead.

      I would complain about the inability to transfer files easily via bluetooth, but it appears to be a Windows failure there. Windows does not 'mount' Bluetooth filesystems, which is somewhat annoying. But the USB thing is pure Samsung stupidity.

      --
      If corporations are people, aren't stockholders guilty of slavery?
    7. Re:Apple connector by Grishnakh · · Score: 1

      You're the one who brought it up, so why don't you tell us what it's about?

      Apple can't charge a fee for using a connector; the idea is simply ridiculous.

    8. Re:Apple connector by macshome · · Score: 1

      The FireWire brand, the logo, and the implimentation have been a fee free license now since at least 2001...

      http://developer.apple.com/softwarelicensing/agreements/firewire.html

    9. Re:Apple connector by macshome · · Score: 1

      It doesn't show up as a USB Mass Storage device, like my iPod Shuffle does? o_O

      Nope, it shows up as a PTP camera device. There are some FUSE drivers to mount it as a drive on a Mac via the MobileDevice API though.

      http://code.google.com/p/iphonedisk/

    10. Re:Apple connector by argent · · Score: 1

      You're the one who brought it up, so why don't you tell us what it's about?

      You're drunk or stoned.

      The GGP suggested using Apple's iPod connector.

      I asked a question, to wit "Don't you have to pay Apple a fee to use this connector?" I asked this connection because of the fuss a bunch of companies made a year or so back about being charged more money by Apple to make iPod-compatible peripherals.

      You asked me which connector I was talking about.

      I clarified that, and repeated the question.

      Apple can't charge a fee for using a connector; the idea is simply ridiculous.

      Have you ever heard of hardware patents? There's plenty of patented connectors, Apple has even patented some (for example the magsafe power connector and they're also licensing the mini displayport connector on the new Macbooks). In this case it appears that what Apple was charging for was the iPod trademark, but the idea that a connector is patented and requires a license fee is not "patently ridiculous", nor is the idea that Apple would have such a patent.

    11. Re:Apple connector by Grishnakh · · Score: 1

      Actually, yes, the idea that a connector is patented and requires a license fee is absolutely ridiculous, at least as it applies here. It is certainly possible to patent a connector, but that only means that you'd have to pay a license fee to either make an identical connector (if they let you), or to buy the connector itself (in which case the fee would be built into the cost of the connector).

      In Apple's case, their connectors are made by a Japanese connector company (JIC, I believe), not Apple. These connectors are readily available from places like Mouser, Digi-Key, etc. If you want, you can easily go to these websites and purchase these connectors for a few dollars apiece. So, if you can buy the connectors, there's obviously no way that Apple (a separate company from the connector company) can charge you for using that connector. THAT'S what's ridiculous.

      If you were talking about a connector company patenting its connectors and charging fees, then I never would have used the term "ridiculous". But only an idiot would even think that Apple makes its own connectors, so that's what makes it ridiculous.

    12. Re:Apple connector by argent · · Score: 1

      You're mixing up patents and copyrights.

    13. Re:Apple connector by Grishnakh · · Score: 1

      No, I'm not. You simply have no idea what you're talking about.

  27. Shouldn't have to be pushed. Should be a feature. by Ranzear · · Score: 1

    Being able to plug in your phone to charge with the same plug you may use for the headset, your camera (the real one, phone cameras still suck) and any other multitude of devices just makes sense from the beginning. It should be touted as a feature that a phone carries a standard charging connector, not pushed as an industry standard onto everyone. I use a mini-hat USB for my phone (Dash), camera (Samsung L60), and PS3 controllers already, so replacing any of them should be within my want to use the same charging devices I already have.

    Having to buy new cables for a new phone has been a commercial scheme since 'cellular phone' day one, and could almost (based on usage) be compared to having to buy new video output cables every time you changed monitors; square-up your combinations and you have a lucrative market.

    Luckily this hasn't flown well with consumers in some time (Apple backlash noted, conversion of iPods to standard headphone jacks et.al.), but again shouldn't be pushed as a 'standard' (Apple's extra capabilities built-in also noted) and instead as a 'works with your existing xxx' feature.

    --
    Slashdot: Where opinions are just opinions until you have mod points.
  28. Nope, just getting in on the cable racket. by raehl · · Score: 3, Insightful

    Legislation (or threat of legislation) had nothing to do with it. The legislators are already all bought and paid for.

    The problem is that selling replacement chargers only works from a profit perspective when the profit from the replacement chargers you're selling offsets the cost of the free chargers you're including with the phone. That worked for a little while, but then generic manufacturers got involved, and the money made selling replacement chargers stopped beating the money spent including free chargers.

    So the phone companies are switching over to the printer+USB cable/HD TV+HDMI cable model. With standardized chargers, they don't need to include a charger with the phone anymore, saving them money. And then the retailers can sell you a phone, and then also sell you a $2 charger for $80. $120 if it's gold plated. $180 if it's gold plated and made by Monster.

    1. Re:Nope, just getting in on the cable racket. by DavidTC · · Score: 2, Funny

      Gold plated Monster cables make the phone charge faster, you philistine!

      Pffft, I bet you're driving around on tires inflated with used air.

      --
      If corporations are people, aren't stockholders guilty of slavery?
  29. mod up by Anonymous Coward · · Score: 0

    parent is insightful

  30. Simple Answer - Manufacturing costs. by Ranzear · · Score: 1

    Its not just a matter of the connector bits and maybe including an extra cable in the box. Its also the engineering and extra electronics and regulation to take power from any of multiple sources, and even thats not inclusive of having the USB plugged in for data but not power while wall power is being used and other situations. I'd rather not have that faster-charging barely-regulated 6.7v be two teeny transistors in a $200 cellphone away from feeding into the +5vsb of my $200 motherboard.

    --
    Slashdot: Where opinions are just opinions until you have mod points.
  31. Re:the oh-so-special adaptor is more than just USB by xouumalperxe · · Score: 1

    They *have* dropped firewire support. Newer iPods can charge over firewire, but lack the controller to actually transfer data over it.

  32. No thanks. by Anonymous Coward · · Score: 0

    I don't want my iPhone outfitted with a USB port. 30-pin iPod connector works fine. Let other companies worry about standardizing. I'd like to stick to whatever I have available.

  33. Wow, not even two full years.... by davidsyes · · Score: 1

    http://news.zdnet.co.uk/communications/0,1000000085,39289524,00.htm

    "The spaghetti-like nightmare that forms many users' collection of phone chargers, headset connectors and data cables could be set to end after a major mobile industry forum agreed to standardise on one type of connector."

    What else will we hear about?

    "Universal charger for phones plan"
    http://news.bbc.co.uk/2/hi/technology/7894763.stm

    "Mobile phone makers agree to create standard charger "
    http://ca.news.yahoo.com/s/afp/090217/technology/spain_telecom_equip_technology_charger_consumer

    --
    Previously: "Linux... Toward the Sunrise..." Now: "Linux... Toward the-- No, now, part of Every Sunrise"
  34. MOD PARENT UP by Anonymous Coward · · Score: 0

    This is exactly why the phone manufacturers like USB.
    They get to follow an established standard, avoid government regulation, and screw the consumer all in one step.

    As someone earlier in the thread mentioned, the manufacturers just put a USB host chip in the charger that acts as a gateway to the computer and can authenticate with the phone.

  35. Re:the oh-so-special adaptor is more than just USB by PitaBred · · Score: 1

    Ok. So what other phones or devices can use that connector? None, you say? It's not an industry standard?

    A standard of some kind is damn useful. It's the only way to break Apple's stranglehold. I don't want to have to pay AT&T and Apple if I want to use my phone as a media device in my vehicle. It's the same as the "Microsoft tax" because Microsoft owns the standards. Do we REALLY want the same thing happening in the mobile phone space, with the even more controlling Apple at the helm?

  36. Apple does not have to be ashamed. Nokia have. by Anonymous Coward · · Score: 0

    At least if you have only Apple products you will need only one cable (except for iPod Shuffle).

    but if you have 3 different cell phone models from nokia at your home, you will probably need 2 or 3 different chargers and other 2 data cables.

    1. Re:Apple does not have to be ashamed. Nokia have. by Anonymous Coward · · Score: 0

      I don't want my nokia outfitted with a 30 pin iPod connector. My nokia connector works fine. Let other companies worry about standardizing. I'd like to stick to whatever I have available.

  37. Re:Motorola uses micro USB format but not micro US by mik1995 · · Score: 1

    Motorola are not the only ones that do this. My wife has a Blackberry, Mio GPS and Motorola Bluetooth headset. They each have micro USB sockets but none of the in-car chargers that came with each unit work with any of the other units. Bizarrely, Belkin did an in-car charger that charges all three (and my Garmin GPS) with no quibbles. However, they don't seem to do it any more and her sister has stolen it back! The other Belkin charger that we have does not work with all of them. If anyone knows where it's possible to get another of these 'truly universal' universal in-car chargers please let me know!

  38. This isn't about convenience it's about waste. by Simulant · · Score: 1

    How many 5v or 12v wall warts do you have? How many have the same connector? Every time you toss a broken small electronic device, a perfectly good power adapter goes with it. (Or you wind up with a big box of unused ones, like I have.) If there were a standard 5v (12+5 would be even better) connector, you wouldn't need a power adapter with every purchase and a mountain of e-waste could be avoided. Convenience is a bonus.

  39. Re:the oh-so-special adaptor is more than just USB by rhesuspieces00 · · Score: 1

    moreover, firewire iPods *can't* charge over USB. At least my 3rd gen can't.

    Pisses me off. Firewire is much better tech than USB. Loading a 160 GB iPod over USB sucks.

  40. Just to let you know... by Anonymous Coward · · Score: 0

    I have an external USB battery pack, and there are direct-to-wall USB jacks. These devices are "dumb" and will just shove 5v down the line at 500mA (or more)

    Motorola, iPhone, and (probably) Sony Ericsson USB cables all need to be slightly modified before they work with these types of devices.

    For example: http://www.instructables.com/id/Modify_a_generic_USB_car_charger_to_charge_a_3rd_g/

    There is no reason why these can't be charged from USB without the drivers -- they're just made that way so that companies can shove more $40 chargers in our faces, and not buying (or even using) a nice $2 USB cable.

  41. Re:the oh-so-special adaptor is more than just USB by phoenix321 · · Score: 1

    Firewire or USB can both saturate any 2.5 inch or 1.5 inch drive inside any portable music player.

    Differences in transfer speeds are either software related or due to intentional speed bumps.

  42. Mod parent as +5 VDC by Rayban · · Score: 4, Funny

    And 500 mA of good idea.

    --
    æeee!
    1. Re:Mod parent as +5 VDC by EvilBudMan · · Score: 1

      I think I have it figured out now the Motorola USB Composite device is 500mA. You also have the 98mA USB Composite device on the same Root Hub.

      Don't try to charge your Razr V3a from a computer with the battery almost dead. It will not recognize the device. At least mine doesn't. Half dead and it will charge just as fast as the charger that comes with it. Almost dead and it wont work even Bluetooth still might for a minute or two. Moral to the story don't install Phone Tools 4.0. Stick with 3.5 Bluetooth for that and just plug it up to charge. I can't do both at the same time because I think both devices are on the same Root Hub. I'll fix that later. Oh the joys of too many USB devices.

  43. Depends on the model by DrYak · · Score: 2, Informative

    Some hubs will start providing 500mA on each port right after plugin in.
    Some hubs will stay off and wait to be enumerated before powering up.

    I've had both type in my possession.

    --
    "Sufficiently advanced satire is indistinguishable from reality." - [Tips: 1DrYakQDKCQ6y52z6QbnkxHXAocMZJE61o ]
  44. It's not just a USB 'thang' by Anonymous Coward · · Score: 0

    The 32 pin cable that connects to the iPhone/iPod is not just a USB cable. The 32 pins also transmit analog video (composite), analog audio, serial data.... But, when connected to my Linux box, it will charge I think every phone should use the same USB connector for charging. I'm just not sure which USB connector the phone should have (micro-usb, mini-usb...).

  45. Code repetition in kernel drivers by DrYak · · Score: 1

    (or maybe it's integrated into the kernel)

    Under Windows, each driver is as a small independent black box.
    If two of them need to do something similar, the code will have to be re-written again for each driver.
    Thus the USB power output negotiation has to be rewritten for every single driver.
    (This is due to the fact that under windows, lots of drivers are developed by 3rd parties, and everything being closed source makes it even more difficult to identify common parts)

    Under Linux, as everything is opensource and, in fine, everything goes inside the same kernel, there are maximal effort to avoid repetition of code. If two drivers need to do the same thing, this codes goes into a library or into a generic driver.
    As such, as virtually all USB device must negotiate power output, the negotiation code goes into the base USB stack. Thus, even if you don't have the specific driver to handle a phone's special characteristics, there's indeed an "act like a dumb charger" function that will be called by the base USB stack (right after enumeration, I think) and will negotiate the current that the phone requires (500mA in most cases).

    --
    "Sufficiently advanced satire is indistinguishable from reality." - [Tips: 1DrYakQDKCQ6y52z6QbnkxHXAocMZJE61o ]
  46. Indeed, why oh-so-special ? by DrYak · · Score: 1

    That connector provides interfaces for USB and Firewire, audio in/out, video out (composite and s-video), serial, and dedicated power.

    An what's the problem in putting a couple of discrete standard connectors (microUSB, miniFW and 3.5mm jacks) next to each other on the same edge at a well defined distance from each other ?

    That way, they could still use a single dock (which has the corresponding plugs set at the same distance) but people could also use standard cables if needed.

    There are lots of constructors who have set data & charging connectors next to each other for this special purpose. (Only their connectors where proprietary). But you could either plug separate charging and sync (proprietary) cable. Or use a dock.

    --
    "Sufficiently advanced satire is indistinguishable from reality." - [Tips: 1DrYakQDKCQ6y52z6QbnkxHXAocMZJE61o ]
  47. Re:the oh-so-special adaptor is more than just USB by threephaseboy · · Score: 1

    The 3rd gen is the only USB iPod that cannot charge over USB.
    The iPod Mini and iPod 4th gen (which have full firewire support) will charge over USB no problem.

    --
    .
  48. I love it! by SupremoMan · · Score: 2, Interesting

    So they decide on universal ports for chargers.... but nothing about accessories. I love it! Even funnier, they say nothing about this generation micro-USB chargers working on next generation phones! Don't worry guys, they'll find a way to fleece us yet!

  49. micro USB versus mini USB by damn_registrars · · Score: 1
    The headline mentioned

    micro-USB

    Though the quoted part of the article mentioned

    mini-USB

    Hopefully the industry decides on one or the other - if we see an implementation of each then we aren't much better off than we are now.

    --
    Damn_registrars has no butt-hole. Damn_registrars has no use for a butt-hole.
  50. no Firewire charging on the iPhone by glennrrr · · Score: 1

    Unfortunately, the iPhone has dropped support for Firewire charging, which is a shame as it provides much more power and faster charging to devices (not to mention the ease of making converters from 12V car ports to 12V Firewire ports). I know this as I has to go through a lot of hoops shortly after the iPhone 3G release to replace my cabling rig in my car. I found out a lot about the inferiority/unreliability of USB as a charger, having gone through 5 lighter to USB adaptors before I found one of the appropriate capacity and reliability.

  51. Re:Motorola uses micro USB format but not micro US by drinkypoo · · Score: 1

    I bought a kit from teleport for $50 that charges practically ALL phones in the car or from the wall (100-240V) and came with a nifty little bag for all the adapters and whatnot. For $100 you can get a kit that will charge pretty much literally any phone. Compatibility comes with a price tag...

    --
    "You're right," Fisheye says. "I should have set it on 'whip' or 'chop.'"
  52. Re:This isn't about convenience it's about waste. by toddestan · · Score: 1

    Well, there has been some moves to standardize the connector/voltage:

    http://en.wikipedia.org/wiki/EIAJ_connector

    However, I have seen few devices that actually use the standard.

  53. Capeable != only connection by Dare+nMc · · Score: 1

    good legislation would simply force apple/etc to include a adapter to mini-usb with the phone, capable of charging the phone efficiently. If bastard cable connector is still desired it's a external adapter. Appears apple would pass this requirement already, with the bundled packages. just need to be sure a usb adapter cable is in all phone packages.

  54. Nokia by rdnetto · · Score: 1

    It's interesting that Nokia is listed there...
    A friend of mine recently got a new Nokia mobile. What's interesting is that while it has a USB port for data, it won't charge via it! It's good to see that they're trying to standardize it now.

    Now, let's just see if they can't do something similar for mp3 players and the like ('m looking at you, Apple)...

    --
    Most human behaviour can be explained in terms of identity.
    1. Re:Nokia by Anonymous Coward · · Score: 0

      I don't want my nokia to charge via usb. My 28-pin nokia connector works fine. Let other companies worry about standardizing. I'd like to stick to whatever I have available.

  55. iphones/ ipods already half way there... by Anonymous Coward · · Score: 0

    Apple already ships its power adaptors as nothing more than a mains to powered USB port. I use mine to charge my iphone, battery backup unit, camera...

    So the only difference between the approach already taken by Apple and this is that I need different cables per device.. Still -alot- better than the current norm from other manufacturers.

  56. Re:the oh-so-special adaptor is more than just USB by Richy_T · · Score: 1

    My Ipod Nano (whatever the latest generation is) will not charge with firewire. There are a lot of accessories that have not been updated still (the stereo system I bought my wife for Christmas for example).

  57. Funny , I switched TO iPhone for connector by JohnnyComeLately · · Score: 1

    I told Verizon, as I kissed them goodbye, that I was tired of having 4 different phones over the years with 4 chargers. Even going from the LG enV to the enV2, I had a new charger (and new memory card... micro to miniSD). I already had an iPod, so no new car charger, wall charger, anything was required. As I write this my iPhone charges on my radio which has an iPod dock. I don't care if it's Firewire, USB (4, 6, mini), or iPod...just make it a standard connector someone might have another use for or from. Having 1 charger that ONLY works with 1 model of phone is the stupidest thing I've seen survive contact with oxygen and sunlight.