Skip to content

Commit

Permalink
Android: fix gc adapter init
Browse files Browse the repository at this point in the history
init write not read
  • Loading branch information
zackhow committed Dec 14, 2018
1 parent 2dcd058 commit 5bc8b7a
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -88,7 +88,7 @@ public static boolean QueryAdapter()
public static void InitAdapter()
{
byte[] init = {0x13};
usb_con.bulkTransfer(usb_in, init, init.length, 0);
usb_con.bulkTransfer(usb_out, init, init.length, 0);
}

public static int Input()
Expand Down

0 comments on commit 5bc8b7a

Please sign in to comment.