I'm using EP2 OUT with double buffering.
- Buf0 and Buf1 have 2048 bytes each
- EP2 OUT is a bulk endpoint with a maximum packet size of 512 bytes
Both endpoints (EP2_OUT_BUF0, EP2_OUT_BUF1) are initialized with 2048 N-bytes and the endpoints are set to active.
Expectation: without further interaction 4096 bytes should be received, without a NYET response.
Observed behaviour: after Buf0 is full a NYET response is transmitted instead of an ACK response, despite Buf1 beeing completely empty and active.

This behaviour is especially detrimental to performance if you work with 512 byte buffers for Buf0 and Buf1, because in this case a NYET response is transmitted after every OUT transmission from the host, which requires an unnecessary USB-Ping and reduces throughput.
Is there a workaround or is this a hardware bug?