Commit ba37d9d1 authored by Florian Kaltenberger's avatar Florian Kaltenberger

just comments

parent 8bd70035
......@@ -116,14 +116,14 @@ void lte_param_init(unsigned char N_tx_port_eNB,
// DL power control init
//if (transmission_mode == 1) {
if (N_tx_port_eNB == 1) {
eNB->pdsch_config_dedicated->p_a = dB0; // 4 = 0dB
eNB->pdsch_config_dedicated->p_a = dB0;
((eNB->frame_parms).pdsch_config_common).p_b = 0;
UE->pdsch_config_dedicated->p_a = dB0; // 4 = 0dB
UE->pdsch_config_dedicated->p_a = dB0;
((UE->frame_parms).pdsch_config_common).p_b = 0;
} else if (N_tx_port_eNB == 2) { // rho_a = rhob
eNB->pdsch_config_dedicated->p_a = dBm3; // 4 = 0dB
eNB->pdsch_config_dedicated->p_a = dBm3;
((eNB->frame_parms).pdsch_config_common).p_b = 1;
UE->pdsch_config_dedicated->p_a = dBm3; // 4 = 0dB
UE->pdsch_config_dedicated->p_a = dBm3;
((UE->frame_parms).pdsch_config_common).p_b = 1;
}
else {
......
......@@ -2227,7 +2227,7 @@ int generate_eNB_dlsch_params_from_dci(int frame,
}
if (harq_pid>=8) {
LOG_E(PHY,"ERROR: Format 2_2A: harq_pid=%d >= 8\n", harq_pid);
LOG_E(PHY,"ERROR: Format 2B: harq_pid=%d >= 8\n", harq_pid);
return(-1);
}
......@@ -2298,7 +2298,7 @@ int generate_eNB_dlsch_params_from_dci(int frame,
#endif
}
else {
LOG_E(PHY,"should not happen!\n");
LOG_E(PHY,"should not happen (rv1 %d mcs1 %d TB0_active %d, rv2 %d mcs2 %d TB1_active %d)!\n",rv1,mcs1,TB0_active,rv2,mcs2,TB1_active);
}
if (dlsch0 != NULL) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment