mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-07-02 10:36:48 -04:00
Make baseband event loop methods private.
This commit is contained in:
parent
2efbd337bd
commit
15791e345d
1 changed files with 5 additions and 5 deletions
|
@ -715,6 +715,11 @@ public:
|
|||
is_running = false;
|
||||
}
|
||||
|
||||
private:
|
||||
MessageHandlerMap message_map;
|
||||
|
||||
bool is_running = true;
|
||||
|
||||
eventmask_t wait() {
|
||||
return chEvtWaitAny(ALL_EVENTS);
|
||||
}
|
||||
|
@ -729,11 +734,6 @@ public:
|
|||
}
|
||||
}
|
||||
|
||||
private:
|
||||
MessageHandlerMap message_map;
|
||||
|
||||
bool is_running = true;
|
||||
|
||||
void handle_baseband_queue() {
|
||||
while( !shared_memory.baseband_queue.is_empty() ) {
|
||||
std::array<uint8_t, Message::MAX_SIZE> message_buffer;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue