Removed all traces of the parameters on the POGSAG config message

Left in the message for the moment, because there are likely to be parameters needed at some point.
This commit is contained in:
heurist1
2021-10-22 18:11:50 +01:00
parent 6ef24ce71c
commit 318720f364
8 changed files with 20 additions and 85 deletions

View File

@@ -1016,17 +1016,10 @@ public:
class POCSAGConfigureMessage : public Message {
public:
constexpr POCSAGConfigureMessage(
const pocsag::BitRate bitrate,
const bool phase
) : Message { ID::POCSAGConfigure },
bitrate(bitrate),
phase(phase)
constexpr POCSAGConfigureMessage()
: Message { ID::POCSAGConfigure }
{
}
const pocsag::BitRate bitrate;
const bool phase;
};
class APRSPacketMessage : public Message {