disable console print of scell activation command during handover

This commit is contained in:
Francisco Paisana 2020-10-01 13:00:04 +01:00
parent d910c910a4
commit cfc77118d3
2 changed files with 7 additions and 6 deletions

View File

@ -272,11 +272,8 @@ void phy::set_activation_deactivation_scell(uint32_t cmd)
Info("Received SCell Activation / Deactivation command: 0x%x\n", cmd);
/* Implements 3GPP 36.321 section 6.1.3.8. Activation/Deactivation MAC Control Element*/
srslte::console("SCELL Activation / Deactivation CMD: %x\n", cmd);
log_h->info("SCELL Activation / Deactivation CMD: %x\n", cmd);
for (uint32_t i = 1; i < SRSLTE_MAX_CARRIERS; i++) {
bool activated = ((cmd >> i) & 0x1) == 0x1;
bool activated = ((cmd >> i) & 0x1u) == 0x1u;
/* Enable actual cell */
common.enable_scell(i, activated);

View File

@ -286,9 +286,13 @@ bool demux::process_ce(srslte::sch_subh* subh)
case srslte::dl_sch_lcid::TA_CMD:
parse_ta_cmd(subh);
break;
case srslte::dl_sch_lcid::SCELL_ACTIVATION:
phy_h->set_activation_deactivation_scell((uint32_t)subh->get_activation_deactivation_cmd());
case srslte::dl_sch_lcid::SCELL_ACTIVATION: {
uint32_t cmd = (uint32_t)subh->get_activation_deactivation_cmd();
srslte::console("SCELL Activation / Deactivation CMD: %x\n", cmd);
log_h->info("SCELL Activation / Deactivation CMD: %x\n", cmd);
phy_h->set_activation_deactivation_scell(cmd);
break;
}
case srslte::dl_sch_lcid::PADDING:
break;
default: