mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-06-29 17:17:28 -04:00
Pocsag improvements (#20)
* Update analog_audio_app.cpp (#353) * Adding phase field (extracted from @jamesshao8 repo)
This commit is contained in:
parent
3e15baa251
commit
4aaac8545b
9 changed files with 51 additions and 11 deletions
|
@ -989,13 +989,16 @@ public:
|
|||
class POCSAGConfigureMessage : public Message {
|
||||
public:
|
||||
constexpr POCSAGConfigureMessage(
|
||||
const pocsag::BitRate bitrate
|
||||
const pocsag::BitRate bitrate,
|
||||
const bool phase
|
||||
) : Message { ID::POCSAGConfigure },
|
||||
bitrate(bitrate)
|
||||
bitrate(bitrate),
|
||||
phase(phase)
|
||||
{
|
||||
}
|
||||
|
||||
const pocsag::BitRate bitrate;
|
||||
const bool phase;
|
||||
};
|
||||
|
||||
class ADSBConfigureMessage : public Message {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue