fixeria has uploaded this change for review.
bts_set_current_frame_number(): log TDMA FN of the next block
Change-Id: Id28776fb5f0f85cd35d3918c79f8c8e338156aae
---
M src/bts.cpp
1 file changed, 2 insertions(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-pcu refs/changes/80/29580/1
diff --git a/src/bts.cpp b/src/bts.cpp
index e955687..9943527 100644
--- a/src/bts.cpp
+++ b/src/bts.cpp
@@ -343,7 +343,8 @@
* and start of another frame (every 3 blocks). */
if (fn != bts->cur_fn && bts->cur_fn != FN_UNSET && fn != fn_next_block(bts->cur_fn)) {
LOGP(DRLCMAC, LOGL_NOTICE,
- "Detected FN jump! %u -> %u\n", bts->cur_fn, fn);
+ "Detected FN jump! %u -> %u (next %u)\n",
+ bts->cur_fn, fn, fn_next_block(bts->cur_fn));
}
bts->cur_fn = fn;
}
To view, visit change 29580. To unsubscribe, or for help writing mail filters, visit settings.