Commit f00f4cd4 authored by cig's avatar cig

Bugfix in selection of dual format A3/B3

parent 3cda74a9
...@@ -839,7 +839,7 @@ void nr_ue_prach_scheduler(module_id_t module_idP, frame_t frameP, sub_frame_t s ...@@ -839,7 +839,7 @@ void nr_ue_prach_scheduler(module_id_t module_idP, frame_t frameP, sub_frame_t s
prach_config_pdu->prach_format = 10; prach_config_pdu->prach_format = 10;
break; break;
case 0xa3: case 0xa3:
prach_config_pdu->prach_format = 10; prach_config_pdu->prach_format = 11;
break; break;
default: default:
AssertFatal(1 == 0, "Only formats A1/B1 A2/B2 A3/B3 are valid for dual format"); AssertFatal(1 == 0, "Only formats A1/B1 A2/B2 A3/B3 are valid for dual format");
......
...@@ -105,7 +105,7 @@ void schedule_nr_prach(module_id_t module_idP, frame_t frameP, sub_frame_t slotP ...@@ -105,7 +105,7 @@ void schedule_nr_prach(module_id_t module_idP, frame_t frameP, sub_frame_t slotP
prach_pdu->prach_format = 10; prach_pdu->prach_format = 10;
break; break;
case 0xa3: case 0xa3:
prach_pdu->prach_format = 10; prach_pdu->prach_format = 11;
break; break;
default: default:
AssertFatal(1==0,"Only formats A1/B1 A2/B2 A3/B3 are valid for dual format"); AssertFatal(1==0,"Only formats A1/B1 A2/B2 A3/B3 are valid for dual format");
......
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