aboutsummaryrefslogtreecommitdiffstats
path: root/Transceiver52M
diff options
context:
space:
mode:
authorOliver Smith <osmith@sysmocom.de>2018-12-12 16:03:38 +0100
committerOliver Smith <osmith@sysmocom.de>2018-12-12 16:55:33 +0100
commit12b059ccc2aa1d083a03d6bd85b3205ea89d1bd1 (patch)
tree15f88ea6ba97a912c29ad2d9a84d35fe4aa0d294 /Transceiver52M
parent29189367dbafd56f81bcf9b1287e52d35826c278 (diff)
WIP: move comma_delimited_to_vector to Utils.cpposmith/select-limesdr-by-serial
Diffstat (limited to 'Transceiver52M')
-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"