From f5fd578d6097c295192840e846a8e4eca5cef5d2 Mon Sep 17 00:00:00 2001 From: Alexander Chemeris Date: Sun, 24 May 2015 18:56:51 -0400 Subject: osmo-trx: Fix random filler command line option. Filler types was of "bool" type, which prevented it from taking values greter than 1. And RAND filler type has integer value of 2, which was casted to 1 on assigning, which led to a normal filler table being used instead of the RAND one. --- Transceiver52M/Transceiver.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Transceiver52M/Transceiver.h') diff --git a/Transceiver52M/Transceiver.h b/Transceiver52M/Transceiver.h index 8bcd8e5..4f6aa69 100644 --- a/Transceiver52M/Transceiver.h +++ b/Transceiver52M/Transceiver.h @@ -149,7 +149,7 @@ public: IDLE ///< timeslot is an idle (or dummy) burst } CorrType; - enum { + enum FillerType { FILLER_DUMMY, FILLER_ZERO, FILLER_RAND, -- cgit v1.2.3