Commit 32354401 authored by Matt Colyer's avatar Matt Colyer

Added support for iPod Touch II

parent 3287ba4c
......@@ -61,7 +61,7 @@ iphone_error_t iphone_get_device(iphone_device_t * device)
for (dev = bus->devices; dev; dev = dev->next) {
if (dev->descriptor.idVendor == 0x05ac &&
(dev->descriptor.idProduct == 0x1290 ||
dev->descriptor.idProduct == 0x1291 || dev->descriptor.idProduct == 0x1292)
dev->descriptor.idProduct == 0x1291 || dev->descriptor.idProduct == 0x1292 || dev->descriptor.idProduct == 0x1293)
) {
phone->__device = dev;
phone->device = usb_open(phone->__device);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment