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
+3 -1
View File
@@ -23,6 +23,8 @@
#include <bitset>
using namespace std;
// This class extracts a POCSAG message from a FM demodulated sample stream
// TODO extend to also process FLEX frames
#define MAX_CODEWORDS (16)
class extract_frame_pager
{
@@ -41,7 +43,7 @@ public:
void resetVals();
void setParams(long a_samplesPerSec, long a_maxBaud = 8000, long a_minBaud = 200, long maxRunOfSameValue = 32);
void setFrameExtractParams(long a_samplesPerSec, long a_maxBaud = 8000, long a_minBaud = 200, long maxRunOfSameValue = 32);
int processDemodulatedSamples(float * sampleBuff, int noOfSamples);
int extractFrames();