more work on debugging the pager decoder

This commit is contained in:
AlexandreRouma
2024-02-02 22:52:19 +01:00
parent 7ab743d05b
commit a08d2a0f85
4 changed files with 91 additions and 18 deletions

View File

@ -23,6 +23,8 @@ namespace pocsag {
class Decoder {
public:
Decoder();
void process(uint8_t* symbols, int count);
NewEvent<Address, MessageType, const std::string&> onMessage;
@ -44,5 +46,6 @@ namespace pocsag {
std::string msg;
uint32_t lastMsgData;
bool leftInLast = 0;
};
}