From: Joel Holdsworth Date: Wed, 14 Mar 2012 22:21:13 +0000 (+0000) Subject: Upsized EP2 FIFO to 4x 1024 X-Git-Tag: sigrok-firmware-fx2lafw-0.1.0~39 X-Git-Url: https://sigrok.org/gitaction?a=commitdiff_plain;h=5a95b634a88e49ac269a731a2e8596931506b63a;p=sigrok-firmware-fx2lafw.git Upsized EP2 FIFO to 4x 1024 --- diff --git a/fx2lafw.c b/fx2lafw.c index 401b5fe6..c523b160 100644 --- 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();