Attention is currently required from: tempest.
fixeria has posted comments on this change by tempest. ( https://gerrit.osmocom.org/c/osmo-trx/+/42811?usp=email )
Change subject: trx-usrp1: make single daughterboard VTY configurable ......................................................................
Patch Set 2: Code-Review+1
(1 comment)
File CommonLibs/trx_vty.c:
https://gerrit.osmocom.org/c/osmo-trx/+/42811/comment/cd9acfc6_e7569618?usp=... : PS2, Line 643: if (strcmp("disable", argv[0]) == 0) : trx->cfg.usrp1_singledb = false; : : if (strcmp("enable", argv[0]) == 0) : ```suggestion trx->cfg.usrp1_singledb = (strcmp(argv[0], "enable") == 0); ```