aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmo-bts
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2021-05-20 02:27:47 +0200
committerlaforge <laforge@osmocom.org>2021-06-04 20:04:13 +0000
commit60fc1d37631cc72164e67e958cdaadf61571191e (patch)
treec5a59fb2f122f070934e18d0471e1cc06aeb1c26 /include/osmo-bts
parent3c1151f9456bdf0d7348c27c0cabbb41e84fcbbc (diff)
[VAMOS] scheduler: add new GMSK training sequences from 3GPP 45.002
Diffstat (limited to 'include/osmo-bts')
-rw-r--r--include/osmo-bts/scheduler.h2
-rw-r--r--include/osmo-bts/scheduler_backend.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/osmo-bts/scheduler.h b/include/osmo-bts/scheduler.h
index 72858f5a..90932292 100644
--- a/include/osmo-bts/scheduler.h
+++ b/include/osmo-bts/scheduler.h
@@ -13,7 +13,7 @@
(trx_chan_desc[chan].flags & TRX_CHAN_FLAG_AUTO_ACTIVE || (state)->active)
#define TRX_GMSK_NB_TSC(br) \
- _sched_train_seq_gmsk_nb[(br)->tsc]
+ _sched_train_seq_gmsk_nb[(br)->tsc_set][(br)->tsc]
#define TRX_8PSK_NB_TSC(br) \
_sched_train_seq_8psk_nb[(br)->tsc]
diff --git a/include/osmo-bts/scheduler_backend.h b/include/osmo-bts/scheduler_backend.h
index d5ce5bf4..c54591e2 100644
--- a/include/osmo-bts/scheduler_backend.h
+++ b/include/osmo-bts/scheduler_backend.h
@@ -35,7 +35,7 @@ struct trx_chan_desc {
extern const struct trx_chan_desc trx_chan_desc[_TRX_CHAN_MAX];
extern const ubit_t _sched_dummy_burst[];
-extern const ubit_t _sched_train_seq_gmsk_nb[8][26];
+extern const ubit_t _sched_train_seq_gmsk_nb[4][8][26];
extern const ubit_t _sched_train_seq_8psk_nb[8][78];
extern const ubit_t _sched_train_seq_gmsk_sb[64];