Beep-on-packet support in AIS app (#2064)

* Beep-on-packet support in AIS app
This commit is contained in:
Mark Thompson
2024-03-29 16:08:32 -05:00
committed by GitHub
parent 76017c91a9
commit 6e5eadd25c
4 changed files with 33 additions and 3 deletions

View File

@@ -74,13 +74,15 @@ class AISProcessor : public BasebandProcessor {
this->payload_handler(packet);
}};
void consume_symbol(const float symbol);
void payload_handler(const baseband::Packet& packet);
void on_message(const Message* const message);
void on_beep_message(const AudioBeepMessage& message);
/* NB: Threads should be the last members in the class definition. */
BasebandThread baseband_thread{
baseband_fs, this, baseband::Direction::Receive, /*auto_start*/ false};
RSSIThread rssi_thread{};
void consume_symbol(const float symbol);
void payload_handler(const baseband::Packet& packet);
};
#endif /*__PROC_AIS_H__*/