Handle the P25 low speed data.

This commit is contained in:
Jonathan Naylor
2016-09-20 06:53:30 +01:00
parent c8cb7a5429
commit 34bf8f18a7
8 changed files with 105 additions and 32 deletions

View File

@@ -21,7 +21,12 @@
class CP25LowSpeedData {
public:
static void process(unsigned char* data);
CP25LowSpeedData();
~CP25LowSpeedData();
void process(unsigned char* data);
unsigned char encode(const unsigned char in);
private:
};