Android: fix gc adapter init

init write not read
This commit is contained in:
zackhow 2018-12-13 21:49:46 -05:00
parent 2dcd058f7d
commit 5bc8b7ae7b
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ public class Java_GCAdapter
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()