aboutsummaryrefslogtreecommitdiffstats
path: root/Transceiver52M/osmo-trx.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Transceiver52M/osmo-trx.cpp')
-rw-r--r--Transceiver52M/osmo-trx.cpp16
1 files changed, 1 insertions, 15 deletions
diff --git a/Transceiver52M/osmo-trx.cpp b/Transceiver52M/osmo-trx.cpp
index 2b69da4..0e63020 100644
--- a/Transceiver52M/osmo-trx.cpp
+++ b/Transceiver52M/osmo-trx.cpp
@@ -22,6 +22,7 @@
#include "Transceiver.h"
#include "radioDevice.h"
+#include "Utils.h"
#include <time.h>
#include <signal.h>
@@ -194,21 +195,6 @@ static void setup_signal_handlers()
osmo_init_ignore_signals();
}
-static std::vector<std::string> comma_delimited_to_vector(char* opt)
-{
- std::string str = std::string(opt);
- std::vector<std::string> result;
- std::stringstream ss(str);
-
- while( ss.good() )
- {
- std::string substr;
- getline(ss, substr, ',');
- result.push_back(substr);
- }
- return result;
-}
-
static void print_help()
{
fprintf(stdout, "Options:\n"