Commit 4df26768 authored by HOAI SON DANG's avatar HOAI SON DANG

Format astyle for modified file

parent beb30f1e
File mode changed from 100644 to 100755
This diff is collapsed.
...@@ -17,39 +17,38 @@ ...@@ -17,39 +17,38 @@
#define TST_THREAD_ID (0) #define TST_THREAD_ID (0)
int test_pucch_generators(PHY_VARS_NR_UE *ue) int test_pucch_generators(PHY_VARS_NR_UE *ue) {
{
int gNB_id = TST_GNB_ID_0; int gNB_id = TST_GNB_ID_0;
int thread_number = TST_THREAD_ID; int thread_number = TST_THREAD_ID;
int TB_identifier = 0; int TB_identifier = 0;
int v_return = 0; int v_return = 0;
pucch_format_nr_t format = pucch_format2_nr; pucch_format_nr_t format = pucch_format2_nr;
uint8_t starting_symbol_index; uint8_t starting_symbol_index;
uint8_t nb_symbols_total = 4; uint8_t nb_symbols_total = 4;
uint16_t starting_prb = 0;; /* it can be considered as first hop on case of pucch hopping */ uint16_t starting_prb = 0;; /* it can be considered as first hop on case of pucch hopping */
uint16_t second_hop = 0; /* second part for pucch for hopping */ uint16_t second_hop = 0; /* second part for pucch for hopping */
uint8_t nb_of_prbs = 1; uint8_t nb_of_prbs = 1;
switch (format){
switch (format) {
case pucch_format0_nr: case pucch_format0_nr:
nb_symbols_total = 2; nb_symbols_total = 2;
nb_of_prbs = 1; nb_of_prbs = 1;
starting_symbol_index = 0; starting_symbol_index = 0;
break; break;
case pucch_format1_nr: case pucch_format1_nr:
nb_symbols_total = 5; nb_symbols_total = 5;
nb_of_prbs = 1; nb_of_prbs = 1;
starting_symbol_index = 0; starting_symbol_index = 0;
break; break;
case pucch_format2_nr: case pucch_format2_nr:
nb_symbols_total = 2; nb_symbols_total = 2;
nb_of_prbs = 16; nb_of_prbs = 16;
starting_symbol_index = 0; starting_symbol_index = 0;
break; break;
} }
int m_0 = 0; /* format 0 only */ int m_0 = 0; /* format 0 only */
int m_CS = 0; /* for all format except for format 0 */ int m_CS = 0; /* for all format except for format 0 */
int index_additional_dmrs = I_PUCCH_NO_ADDITIONAL_DMRS; int index_additional_dmrs = I_PUCCH_NO_ADDITIONAL_DMRS;
...@@ -61,9 +60,9 @@ int test_pucch_generators(PHY_VARS_NR_UE *ue) ...@@ -61,9 +60,9 @@ int test_pucch_generators(PHY_VARS_NR_UE *ue)
int tx_amp = 512; int tx_amp = 512;
int nr_tti_tx = 0; int nr_tti_tx = 0;
int N_UCI = 0; /* size in bits for Uplink Control Information */ int N_UCI = 0; /* size in bits for Uplink Control Information */
switch(format) { switch(format) {
case pucch_format0_nr: case pucch_format0_nr: {
{
nr_generate_pucch0(ue,ue->common_vars.txdataF, nr_generate_pucch0(ue,ue->common_vars.txdataF,
&ue->frame_parms, &ue->frame_parms,
&ue->pucch_config_dedicated_nr[gNB_id], &ue->pucch_config_dedicated_nr[gNB_id],
...@@ -76,8 +75,8 @@ int test_pucch_generators(PHY_VARS_NR_UE *ue) ...@@ -76,8 +75,8 @@ int test_pucch_generators(PHY_VARS_NR_UE *ue)
starting_prb); starting_prb);
break; break;
} }
case pucch_format1_nr:
{ case pucch_format1_nr: {
nr_generate_pucch1(ue,ue->common_vars.txdataF, nr_generate_pucch1(ue,ue->common_vars.txdataF,
&ue->frame_parms, &ue->frame_parms,
&ue->pucch_config_dedicated_nr[gNB_id], &ue->pucch_config_dedicated_nr[gNB_id],
...@@ -93,8 +92,8 @@ int test_pucch_generators(PHY_VARS_NR_UE *ue) ...@@ -93,8 +92,8 @@ int test_pucch_generators(PHY_VARS_NR_UE *ue)
(uint8_t)N_UCI); (uint8_t)N_UCI);
break; break;
} }
case pucch_format2_nr:
{ case pucch_format2_nr: {
nr_generate_pucch2(ue, nr_generate_pucch2(ue,
ue->pdcch_vars[ue->current_thread_id[nr_tti_tx]][gNB_id]->crnti, ue->pdcch_vars[ue->current_thread_id[nr_tti_tx]][gNB_id]->crnti,
ue->common_vars.txdataF, ue->common_vars.txdataF,
...@@ -110,9 +109,9 @@ int test_pucch_generators(PHY_VARS_NR_UE *ue) ...@@ -110,9 +109,9 @@ int test_pucch_generators(PHY_VARS_NR_UE *ue)
(uint8_t)N_UCI); (uint8_t)N_UCI);
break; break;
} }
case pucch_format3_nr: case pucch_format3_nr:
case pucch_format4_nr: case pucch_format4_nr: {
{
nr_generate_pucch3_4(ue, nr_generate_pucch3_4(ue,
ue->pdcch_vars[ue->current_thread_id[nr_tti_tx]][gNB_id]->crnti, ue->pdcch_vars[ue->current_thread_id[nr_tti_tx]][gNB_id]->crnti,
ue->common_vars.txdataF, ue->common_vars.txdataF,
...@@ -138,8 +137,7 @@ int test_pucch_generators(PHY_VARS_NR_UE *ue) ...@@ -138,8 +137,7 @@ int test_pucch_generators(PHY_VARS_NR_UE *ue)
} }
int main(int argc, char *argv[]) int main(int argc, char *argv[]) {
{
uint8_t transmission_mode = 1; uint8_t transmission_mode = 1;
uint8_t nb_antennas_tx = 1; uint8_t nb_antennas_tx = 1;
uint8_t nb_antennas_rx = 1; uint8_t nb_antennas_rx = 1;
...@@ -149,7 +147,6 @@ int main(int argc, char *argv[]) ...@@ -149,7 +147,6 @@ int main(int argc, char *argv[])
int Nid_cell[] = {(3*1+3)}; int Nid_cell[] = {(3*1+3)};
VOID_PARAMETER argc; VOID_PARAMETER argc;
VOID_PARAMETER argv; VOID_PARAMETER argv;
printf(" PUCCH TEST \n"); printf(" PUCCH TEST \n");
printf("-----------\n"); printf("-----------\n");
...@@ -160,12 +157,10 @@ int main(int argc, char *argv[]) ...@@ -160,12 +157,10 @@ int main(int argc, char *argv[])
if (test_pucch_generators(PHY_vars_UE) != 0) { if (test_pucch_generators(PHY_vars_UE) != 0) {
printf("\nTest PUCCH is fail \n"); printf("\nTest PUCCH is fail \n");
} } else {
else {
printf("\nTest PUCCH is pass \n"); printf("\nTest PUCCH is pass \n");
} }
free_context_synchro_nr(); free_context_synchro_nr();
return(0); return(0);
} }
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