Move MessageQueue locations in SharedMemory structure.

This commit is contained in:
Jared Boone 2016-06-21 10:56:00 -07:00
parent 9f95eb90a3
commit 7023616808

View File

@ -36,10 +36,10 @@ struct SharedMemory {
static constexpr size_t baseband_queue_k = 11;
static constexpr size_t application_queue_k = 11;
MessageQueue baseband_queue;
uint8_t baseband_queue_data[1 << baseband_queue_k];
MessageQueue application_queue;
uint8_t application_queue_data[1 << application_queue_k];
MessageQueue baseband_queue;
MessageQueue application_queue;
// TODO: M0 should directly configure and control DMA channel that is
// acquiring ADC samples.