Baseband: Pass unhandled messages to baseband thread, processor.

This commit is contained in:
Jared Boone 2016-01-02 22:59:31 -08:00
parent 07cd99d85d
commit fd612dc207
4 changed files with 10 additions and 2 deletions

View file

@ -192,8 +192,8 @@ private:
request_stop();
}
void on_message_default(const Message* const) {
// TODO: Pass to active baseband processor.
void on_message_default(const Message* const message) {
baseband_thread.on_message(message);
}
void handle_spectrum() {