pocsag menu cleanup

This commit is contained in:
AlexandreRouma 2024-02-06 22:16:21 +01:00
parent f66f2c25e1
commit c0a84f8703

View File

@ -8,13 +8,6 @@
#include "dsp.h" #include "dsp.h"
#include "pocsag.h" #include "pocsag.h"
const char* msgTypes[] = {
"Numeric",
"Unknown (0b01)",
"Unknown (0b10)",
"Alphanumeric",
};
#define BAUDRATE 2400 #define BAUDRATE 2400
#define SAMPLERATE (BAUDRATE*10) #define SAMPLERATE (BAUDRATE*10)
@ -68,7 +61,6 @@ public:
} }
void start() { void start() {
flog::debug("POCSAG start");
dsp.start(); dsp.start();
reshape.start(); reshape.start();
dataHandler.start(); dataHandler.start();
@ -76,7 +68,6 @@ public:
} }
void stop() { void stop() {
flog::debug("POCSAG stop");
dsp.stop(); dsp.stop();
reshape.stop(); reshape.stop();
dataHandler.stop(); dataHandler.stop();