Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenXG
OpenXG-RAN
Commits
428af852
Commit
428af852
authored
Sep 05, 2023
by
Tsung-Yu Chan
Committed by
Tsung Yu Chan
Sep 25, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix / clean the unused variable
parent
e51d8a9b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
24 deletions
+0
-24
openair1/PHY/NR_TRANSPORT/nr_ulsch_demodulation.c
openair1/PHY/NR_TRANSPORT/nr_ulsch_demodulation.c
+0
-5
openair1/PHY/defs_gNB.h
openair1/PHY/defs_gNB.h
+0
-4
openair1/SCHED_NR/phy_procedures_nr_gNB.c
openair1/SCHED_NR/phy_procedures_nr_gNB.c
+0
-15
No files found.
openair1/PHY/NR_TRANSPORT/nr_ulsch_demodulation.c
View file @
428af852
...
...
@@ -1717,8 +1717,6 @@ int nr_rx_pusch_tp(PHY_VARS_gNB *gNB,
NR_gNB_PUSCH
*
pusch_vars
=
&
gNB
->
pusch_vars
[
ulsch_id
];
pusch_vars
->
dmrs_symbol
=
INVALID_VALUE
;
pusch_vars
->
cl_done
=
0
;
memset
(
pusch_vars
->
extraction_done
,
0
,
14
*
sizeof
(
int
));
gNB
->
nbSymb
=
0
;
bwp_start_subcarrier
=
((
rel15_ul
->
rb_start
+
rel15_ul
->
bwp_start
)
*
NR_NB_SC_PER_RB
+
frame_parms
->
first_carrier_offset
)
%
frame_parms
->
ofdm_symbol_size
;
LOG_D
(
PHY
,
"pusch %d.%d : bwp_start_subcarrier %d, rb_start %d, first_carrier_offset %d
\n
"
,
frame
,
slot
,
bwp_start_subcarrier
,
rel15_ul
->
rb_start
,
frame_parms
->
first_carrier_offset
);
...
...
@@ -1881,9 +1879,6 @@ int nr_rx_pusch_tp(PHY_VARS_gNB *gNB,
else
pusch_vars
->
log2_maxh
=
(
log2_approx
(
avgs
)
>>
1
);
pusch_vars
->
cl_done
=
1
;
pusch_vars
->
extraction_done
[
meas_symbol
]
=
1
;
stop_meas
(
&
gNB
->
rx_pusch_init_stats
);
start_meas
(
&
gNB
->
rx_pusch_symbol_processing_stats
);
...
...
openair1/PHY/defs_gNB.h
View file @
428af852
...
...
@@ -411,10 +411,6 @@ typedef struct {
int16_t
*
ul_valid_re_per_slot
;
/// \brief offset for llr corresponding to each symbol
int
llr_offset
[
14
];
/// flag to verify if channel level computation is done
uint8_t
cl_done
;
/// flag to indicate if channel extraction is done
int
extraction_done
[
14
];
/// flag to indicate DTX on reception
int
DTX
;
}
NR_gNB_PUSCH
;
...
...
openair1/SCHED_NR/phy_procedures_nr_gNB.c
View file @
428af852
...
...
@@ -397,21 +397,6 @@ static int nr_ulsch_procedures(PHY_VARS_gNB *gNB, int frame_rx, int slot_rx, int
number_dmrs_symbols
,
// number of dmrs symbols irrespective of single or double symbol dmrs
pusch_pdu
->
qam_mod_order
,
pusch_pdu
->
nrOfLayers
);
// nr_ulsch_layer_demapping(gNB->pusch_vars[ULSCH_id].llr,
// pusch_pdu->nrOfLayers,
// pusch_pdu->qam_mod_order,
// G,
// gNB->pusch_vars[ULSCH_id].llr_layers);
// //----------------------------------------------------------
// //------------------- ULSCH unscrambling -------------------
// //----------------------------------------------------------
// start_meas(&gNB->ulsch_unscrambling_stats);
// nr_ulsch_unscrambling(gNB->pusch_vars[ULSCH_id].llr, G, pusch_pdu->data_scrambling_id, pusch_pdu->rnti);
// stop_meas(&gNB->ulsch_unscrambling_stats);
//----------------------------------------------------------
//--------------------- ULSCH decoding ---------------------
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment