UI frames should be reported to userspace as DL_UNITDATA_IND rather
than DL_DATA_IND. openbsc/input/misdn.c currently doesn't support DL_UNITDATA_IND in the switch statement of handle_ts1_read. That sounds like the most likely cause.
hi harald,
this was the problem. finally got the measurement reports (--debug ....:DMEAS). you just need to add to misdn.c:
case DL_UNITDATA_IND:
and everything is fine.
regards,
andreas
On Mon, Jun 29, 2009 at 11:37:51PM +0200, Andreas.Eversberg wrote:
hi harald,
this was the problem. finally got the measurement reports (--debug ....:DMEAS). you just need to add to misdn.c:
case DL_UNITDATA_IND:
Ok, great, thanks for testing. I've committed this change to git just right now.