lynxis lazus has submitted this change. ( https://gerrit.osmocom.org/c/simtrace2/+/43132?usp=email )
(
1 is the latest approved patch-set. No files were changed between the latest approved patch-set and the submitted one. )Change subject: firmware: qmod: fix '@' debug command switching the wrong channel ......................................................................
firmware: qmod: fix '@' debug command switching the wrong channel
Apparently copy paste mistake.
Change-Id: I9383adcfffab07ffa5f1fd3505e3aa244fb393ff --- M firmware/libboard/qmod/source/board_qmod.c 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: Jenkins Builder: Verified laforge: Looks good to me, but someone else must approve lynxis lazus: Looks good to me, approved
diff --git a/firmware/libboard/qmod/source/board_qmod.c b/firmware/libboard/qmod/source/board_qmod.c index 189fb58..078570d 100644 --- a/firmware/libboard/qmod/source/board_qmod.c +++ b/firmware/libboard/qmod/source/board_qmod.c @@ -287,7 +287,7 @@ sim_switch_use_physical(0, 0); break; case '@': - sim_switch_use_physical(0, 0); + sim_switch_use_physical(1, 0); break; case 't': talloc_report(NULL, stdout);