aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/sysmobts-calib/sysmobts-calib.c
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2013-02-05 23:36:05 +0100
committerHolger Hans Peter Freyther <zecke@selfish.org>2013-02-13 10:34:40 +0100
commit225cf8229020e5474a5dc9824d012e50c2aa2ad8 (patch)
tree959bfeb233c08f81706a1630ca3cf3ead15a5914 /contrib/sysmobts-calib/sysmobts-calib.c
parent18708dd3b60fa27e6a7121b686f11ee8c8069a4b (diff)
calib: Provide the fn and block number for each frame
Diffstat (limited to 'contrib/sysmobts-calib/sysmobts-calib.c')
-rw-r--r--contrib/sysmobts-calib/sysmobts-calib.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/contrib/sysmobts-calib/sysmobts-calib.c b/contrib/sysmobts-calib/sysmobts-calib.c
index 14bc36fd..3204db72 100644
--- a/contrib/sysmobts-calib/sysmobts-calib.c
+++ b/contrib/sysmobts-calib/sysmobts-calib.c
@@ -434,10 +434,12 @@ static int bcch_follow(void)
/* now wait for the PhDataInd */
for (;;) {
+ uint32_t fn;
+ uint8_t block;
uint8_t data[23];
size_t size;
- rc = wait_for_data(data, &size);
+ rc = wait_for_data(data, &size, &fn, &block);
if (rc == 1)
continue;
CHECK_RC_MSG(rc, "No Data Indication");