Shrink baseband queue size, 2^12 -> 2^11.

This commit is contained in:
Jared Boone 2016-06-21 10:55:24 -07:00
parent c990963298
commit 9f95eb90a3

View File

@ -33,7 +33,7 @@ struct TouchADCFrame {
/* NOTE: These structures must be located in the same location in both M4 and M0 binaries */
struct SharedMemory {
static constexpr size_t baseband_queue_k = 12;
static constexpr size_t baseband_queue_k = 11;
static constexpr size_t application_queue_k = 11;
MessageQueue baseband_queue;