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

@ -68,6 +68,12 @@ void BasebandThread::set_configuration(const BasebandConfiguration& new_configur
baseband_configuration = new_configuration;
}
void BasebandThread::on_message(const Message* const message) {
if( baseband_processor ) {
baseband_processor->on_message(message);
}
}
void BasebandThread::on_update_spectrum() {
if( baseband_processor ) {
baseband_processor->on_update_spectrum();