mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-07-30 18:19:08 -04:00
Baseband: Pass unhandled messages to baseband thread, processor.
This commit is contained in:
parent
07cd99d85d
commit
fd612dc207
4 changed files with 10 additions and 2 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue