ms: block burst q to upper layer

The timekeeper should never wait for lazy readers, because that causes
timekeeping and later usb transfers to fail.

Change-Id: Id0aad606a296b2885617013ce6637204357b13d7
This commit is contained in:
Eric
2023-05-23 11:32:49 +02:00
parent b3157b91bb
commit 4080cd05ba

View File

@@ -116,7 +116,7 @@ struct one_burst {
};
};
using rx_queue_t = spsc_cond<8 * NUM_RXQ_FRAMES, one_burst, true, true>;
using rx_queue_t = spsc_cond<8 * NUM_RXQ_FRAMES, one_burst, true, false>;
enum class SCH_STATE { SEARCHING, FOUND };