mirror of
https://github.com/portapack-mayhem/mayhem-firmware.git
synced 2026-09-10 16:49:36 +00:00
Added function setting in POCSAG TX
POCSAG TX: Max message length is now 30 (was 16 for no reason)
This commit is contained in:
@@ -79,8 +79,7 @@ public:
|
||||
}
|
||||
|
||||
void clear() {
|
||||
for (uint32_t c = 0; c < 16; c++)
|
||||
codewords[c] = 0;
|
||||
codewords.fill(0);
|
||||
bitrate_ = UNKNOWN;
|
||||
flag_ = NORMAL;
|
||||
}
|
||||
@@ -88,7 +87,7 @@ public:
|
||||
private:
|
||||
BitRate bitrate_ { UNKNOWN };
|
||||
PacketFlag flag_ { NORMAL };
|
||||
uint32_t codewords[16];
|
||||
std::array <uint32_t, 16> codewords;
|
||||
Timestamp timestamp_ { };
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user