-
Notifications
You must be signed in to change notification settings - Fork 72
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Chage HP Touchpad #27
Comments
True, you would have to modify "ipad_charge.c" too. |
Keep in mind this was developed for iPad / iPhone / iPod Touch So this might not charge your HP Touchpad. Please note that if you do make any changes and there is any damage to the device none of the contributing developers will accept responsibility for it. |
"Keep in mind this was developed for iPad / iPhone / iPod Touch So this might not charge your HP Touchpad. Please note that if you do make any changes and there is any damage to the device none of the contributing developers will accept responsibility for it." Completely understood. I do know that the output of both the ipad charger and the HP charger is the same. I'm not a complete noob, but I know just enough linux to be dangerous :) "True, you would have to modify "ipad_charge.c" too." what and how do I modify? |
You would need to define the new vendor as VENDOR_HP And the device as DEVICE_HP_TOUCHPAD #define VENDOR_HP 0x0830
#define DEVICE_HP_TOUCHPAD 0x8072 Add a new IF statement to line 168 else if(desc.idVendor == VENDOR_HP && (desc.idProduct == DEVICE_HP_TOUCHPAD))
{
if (set_charging_mode(dev, enable) < 0)
fprintf(stderr, "ipad_charge: error setting charge mode\n");
else
count++;
} Let me know if it works out for you |
I edited my original post with more info, but I did install via .deb file. I assume, after the edits, I need to "make" and and "make install"? Should I uninstall my deb first? |
Yes remove the deb package first. Once you make the edits you would need to rebuild from source. |
No luck, still same error I added to line 168, after "}" and this is what it looks like: "if (desc.idVendor == VENDOR_APPLE && (desc.idProduct == PRODUCT_IPAD1
{ Did I get it in the right place? Also I put the DEFINE statements just after all the others: #define VERSION "1.1" #define CTRL_OUT (LIBUSB_REQUEST_TYPE_VENDOR | LIBUSB_ENDPOINT_OUT) #define PRODUCT_IPOD_TOUCH_2G 0x1293 #define VENDOR_HP 0x0830 Does the order matter? |
yes you put it in the right place. There could be a different charging mechanism in place for the HP Touchpad when connecting it to a PC or Laptop. |
Well I tried starting all over using the directions in the wiki for package install "checkinstall", still no luck, I get three messages now: ipad_charge: unable to claim interface: error -6 Thanks for the help anyway. It was a good instructional, for me, at least..... |
Must be....I just tried it on same laptop in windows with asus ai charger. Works with ipad not Touchpad
|
Thank you! htc_charge: unable to claim interface: error -6 Thanks for the help anyway. It was a good instructional, for me,so. |
This works great to charge my ipad (4th gen.) I would like to modify this to also charge my HP Touchpad. Here is my lsusb output for the Touchpad:
"Bus 002 Device 008: ID 0830:8072 Palm, Inc."
I tried adding to "95-ipad_charge.rules" the following:
ENV{DEVTYPE}=="usb_device", ACTION=="add", SUBSYSTEM=="usb", ATTR{idVendor}=="0830", ATTR{idProduct}=="8072", RUN+="/usr/bin/ipad_charge"
but, I keep getting the following error:
ipad_charge: no such device or an error occured
Any ideas? Any other information I need to make this work?
here is lsusb -v output:
Bus 002 Device 008: ID 0830:8072 Palm, Inc.
Device Descriptor:
bLength 18
bDescriptorType 1
bcdUSB 2.00
bDeviceClass 0 (Defined at Interface level)
bDeviceSubClass 0
bDeviceProtocol 0
bMaxPacketSize0 64
idVendor 0x0830 Palm, Inc.
idProduct 0x8072
bcdDevice 3.27
iManufacturer 1 HP
iProduct 2 webOS-device
iSerial 3 0123456789ABCDEF
bNumConfigurations 1
Configuration Descriptor:
bLength 9
bDescriptorType 2
wTotalLength 55
bNumInterfaces 2
bConfigurationValue 2
iConfiguration 4 ums+novcom
bmAttributes 0xc0
Self Powered
MaxPower 500mA
Interface Descriptor:
bLength 9
bDescriptorType 4
bInterfaceNumber 0
bAlternateSetting 0
bNumEndpoints 2
bInterfaceClass 8 Mass Storage
bInterfaceSubClass 6 SCSI
bInterfaceProtocol 80 Bulk-Only
iInterface 1 HP
Endpoint Descriptor:
bLength 7
bDescriptorType 5
bEndpointAddress 0x81 EP 1 IN
bmAttributes 2
Transfer Type Bulk
Synch Type None
Usage Type Data
wMaxPacketSize 0x0200 1x 512 bytes
bInterval 0
Endpoint Descriptor:
bLength 7
bDescriptorType 5
bEndpointAddress 0x01 EP 1 OUT
bmAttributes 2
Transfer Type Bulk
Synch Type None
Usage Type Data
wMaxPacketSize 0x0200 1x 512 bytes
bInterval 1
Interface Descriptor:
bLength 9
bDescriptorType 4
bInterfaceNumber 1
bAlternateSetting 0
bNumEndpoints 2
bInterfaceClass 255 Vendor Specific Class
bInterfaceSubClass 71
bInterfaceProtocol 17
iInterface 5 Novacom
Endpoint Descriptor:
bLength 7
bDescriptorType 5
bEndpointAddress 0x82 EP 2 IN
bmAttributes 2
Transfer Type Bulk
Synch Type None
Usage Type Data
wMaxPacketSize 0x0200 1x 512 bytes
bInterval 0
Endpoint Descriptor:
bLength 7
bDescriptorType 5
bEndpointAddress 0x02 EP 2 OUT
bmAttributes 2
Transfer Type Bulk
Synch Type None
Usage Type Data
wMaxPacketSize 0x0200 1x 512 bytes
bInterval 1
Device Qualifier (for other device speed):
bLength 10
bDescriptorType 6
bcdUSB 2.00
bDeviceClass 0 (Defined at Interface level)
bDeviceSubClass 0
bDeviceProtocol 0
bMaxPacketSize0 64
bNumConfigurations 1
Device Status: 0x0000
(Bus Powered)
I should also mention I am running on Ubuntu 12.10 64bit, and I installed this with a deb from here: http://www.yourproblemsolved.com/sites/default/files/ipad-charge-1.0_20101231-1_amd64.deb.zip
I'm assuming I'd have to edit ipad_charge.c and build from source?
The text was updated successfully, but these errors were encountered: