1
0
Fork 0
forked from len0rd/rockbox

iAudio X5: USB mode working again

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11261 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2006-10-18 20:56:29 +00:00
parent 03f32f66d4
commit d543bd486b

View file

@ -23,10 +23,9 @@
void usb_init_device(void)
{
and_l(~0x00000010, &GPIO_OUT); /* Self powered */
or_l(0x00800000, &GPIO_OUT); /* RESET deasserted */
or_l(0x00800010, &GPIO_FUNCTION);
or_l(0x00800010, &GPIO_OUT); /* RESET deasserted, VBUS powered */
or_l(0x00800010, &GPIO_ENABLE);
or_l(0x00800010, &GPIO_FUNCTION);
or_l(0x00800000, &GPIO1_FUNCTION); /* USB detect */
}