]> sigrok.org Git - sigrok-firmware-fx2lafw.git/commitdiff
Upsized EP2 FIFO to 4x 1024
authorJoel Holdsworth <redacted>
Wed, 14 Mar 2012 22:21:13 +0000 (22:21 +0000)
committerJoel Holdsworth <redacted>
Wed, 14 Mar 2012 22:21:13 +0000 (22:21 +0000)
fx2lafw.c

index 401b5fe6a08bfaba439953fcb33720bcec072519..c523b1609eb82f0f27f061f177e24e6ce1d93a89 100644 (file)
--- a/fx2lafw.c
+++ b/fx2lafw.c
@@ -59,7 +59,7 @@ static void setup_endpoints(void)
        EP2CFG = (1 << 7) |               /* EP is valid/activated */
                 (1 << 6) |               /* EP direction: IN */
                 (1 << 5) | (0 << 4) |    /* EP Type: bulk */
-                (0 << 3) |               /* EP buffer size: 512 */
+                (1 << 3) |               /* EP buffer size: 1024 */
                 (0 << 2) |               /* Reserved. */
                 (0 << 1) | (0 << 0);     /* EP buffering: quad buffering */
        SYNCDELAY();