aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Wild <ewild@sysmocom.de>2024-03-20 19:39:05 +0100
committerEric Wild <ewild@sysmocom.de>2024-03-21 10:25:21 +0100
commitea6cec50145edf43dfd5f65f56a0b966d233ab19 (patch)
tree530ea8b989eaec66d7a840cabf372a8b8ee10daf
parent98a50b75977347edcebfb105e9e965f0fe2d6f54 (diff)
ms: prune ancient, unused code partsHoernchen/mssdr
-rw-r--r--Transceiver52M/ms/bladerf_specific.h2
-rw-r--r--Transceiver52M/ms/ms.cpp8
-rw-r--r--Transceiver52M/ms/ms.h4
-rw-r--r--Transceiver52M/ms/ms_rx_lower.cpp4
-rw-r--r--Transceiver52M/ms/threadpool.h1
5 files changed, 1 insertions, 18 deletions
diff --git a/Transceiver52M/ms/bladerf_specific.h b/Transceiver52M/ms/bladerf_specific.h
index d31ea29..a440125 100644
--- a/Transceiver52M/ms/bladerf_specific.h
+++ b/Transceiver52M/ms/bladerf_specific.h
@@ -186,7 +186,6 @@ struct blade_otw_buffer_helper {
};
using dev_buf_t = typeof(blade_otw_buffer_helper<BLADE_BUFFER_SIZE, blade_speed_buffer_type::SS>::x);
-// using buf_in_use = blade_otw_buffer<2, blade_speed_buffer_type::SS>;
using bh_fn_t = std::function<int(dev_buf_t *)>;
template <typename T>
@@ -194,7 +193,6 @@ struct blade_hw {
struct bladerf *dev;
struct bladerf_stream *rx_stream;
struct bladerf_stream *tx_stream;
- // using pkt2buf = blade_otw_buffer<2, blade_speed_buffer_type::SS>;
using tx_buf_q_type = spsc_cond_timeout<BLADE_NUM_BUFFERS, dev_buf_t *, true, false>;
const unsigned int rxFullScale, txFullScale;
const int rxtxdelay;
diff --git a/Transceiver52M/ms/ms.cpp b/Transceiver52M/ms/ms.cpp
index 4ae8668..f1a915c 100644
--- a/Transceiver52M/ms/ms.cpp
+++ b/Transceiver52M/ms/ms.cpp
@@ -22,19 +22,13 @@
#include "GSMCommon.h"
#include <atomic>
#include <cassert>
-#include <complex>
+
#include <iostream>
#include <cstdlib>
#include <cstdio>
-#include <thread>
-#include <fstream>
#include "ms.h"
-extern "C" {
-#include "sch.h"
-}
-
#include "threadsched.h"
dummylog ms_trx::dummy_log;
diff --git a/Transceiver52M/ms/ms.h b/Transceiver52M/ms/ms.h
index e088f73..9ac2171 100644
--- a/Transceiver52M/ms/ms.h
+++ b/Transceiver52M/ms/ms.h
@@ -181,7 +181,6 @@ class time_keeper {
std::lock_guard<std::mutex> g(m);
global_time_keeper.incTN(1);
global_ts_keeper = new_ts;
- // std::cerr << "u " << new_ts << std::endl;
}
void inc_and_update_safe(int64_t new_ts)
{
@@ -191,7 +190,6 @@ class time_keeper {
assert(diff > 0.5 * ONE_TS_BURST_LEN);
global_time_keeper.incTN(1);
global_ts_keeper = new_ts;
- // std::cerr << "s " << new_ts << std::endl;
}
void dec_by_one()
{
@@ -217,8 +215,6 @@ class time_keeper {
}
};
-using ts_hitter_q_t = spsc_cond<64, GSM::Time, true, false>;
-
// used to globally initialize the sched/hw information
struct sched_hw_info {
int hw_cpus;
diff --git a/Transceiver52M/ms/ms_rx_lower.cpp b/Transceiver52M/ms/ms_rx_lower.cpp
index 3527a8b..71d49aa 100644
--- a/Transceiver52M/ms/ms_rx_lower.cpp
+++ b/Transceiver52M/ms/ms_rx_lower.cpp
@@ -89,8 +89,6 @@ bool ms_trx::decode_sch(char *bits, bool update_global_clock)
mBSIC = sch.bsic;
mTSC = sch.bsic & 0x7;
timekeeper.set(fn, 0);
- // global_time_keeper.FN(fn);
- // global_time_keeper.TN(0);
}
return true;
@@ -261,7 +259,6 @@ bool ms_trx::handle_sch(bool is_first_sch_acq)
clamp_array(bits->begin(), 148, 1.5f);
float_to_sbit(&bits->begin()[0], (signed char *)&sch_demod_bits[0], 62, 148);
- // float_to_sbit(&bits->begin()[106], &data[39], 62, 39);
if (decode_sch((char *)sch_demod_bits, is_first_sch_acq)) {
auto current_gsm_time_updated = timekeeper.gsmtime();
@@ -371,7 +368,6 @@ void ms_trx::grab_bursts(dev_buf_t *rcd)
if (fracts)
timekeeper.inc_both();
- // timekeeper.inc_and_update(first_sch_ts_start + 1 * ONE_TS_BURST_LEN);
timekeeper.dec_by_one(); // oops, off by one?
diff --git a/Transceiver52M/ms/threadpool.h b/Transceiver52M/ms/threadpool.h
index 4b1eefd..0574236 100644
--- a/Transceiver52M/ms/threadpool.h
+++ b/Transceiver52M/ms/threadpool.h
@@ -21,7 +21,6 @@
*/
#include <atomic>
-#include <vector>
#include <future>
#include <mutex>
#include <queue>