1
0
Fork 0
forked from len0rd/rockbox

Add support for i.MX28 to imx_hid_recovery, thanks to Wolfram Sang.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30576 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Amaury Pouly 2011-09-20 21:25:46 +00:00
parent fd9859ead2
commit df448bf7a1

View file

@ -48,7 +48,11 @@ int main(int argc, char **argv)
libusb_set_debug(NULL, 3);
/* MX23 */
dev = libusb_open_device_with_vid_pid(NULL, 0x066F, 0x3780);
if(dev == NULL)
/* MX28 */
dev = libusb_open_device_with_vid_pid(NULL, 0x15A2, 0x004F);
if(dev == NULL)
{
printf("Cannot open device\n");