On Tue, Nov 29, 2022 at 03:07:26AM +0100, Sally Regenbogen wrote:
The CLI gave me this error:
~/osmocom/osmocom-bb/src/host/layer23/src/transceiver# sudo ./transceiver -e 1 -2 -a 47 -r 99 47 41 1 <000c> l1ctl.c:77 Tx Reset Req (1) <000c> l1ctl_link.c:171 Sending: '0d 00 00 00 01 00 00 00 ' <000c> l1ctl.c:77 Tx Reset Req (1) <000c> l1ctl_link.c:171 Sending: '0d 00 00 00 01 00 00 00 ' Aborted
I'm not familiar with 'transceiver', just a general approach: Whenever I see a program just aborted like this, one way to find out why is gdb. Maybe this can give a hint on where in the code it aborted:
gdb -ex run --args ./transceiver -e 1 -2 -a 47 -r 99
it helps when the program is built with debug symbols enabled.
when you know which place in the code bailed out it might give hints on the cause and/or how to work around it, when you're lucky.
~N