mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-01-24 05:31:36 -05:00
Shrink baseband queue size, 2^12 -> 2^11.
This commit is contained in:
parent
c990963298
commit
9f95eb90a3
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user