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
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
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
canghaiwuhen
OpenXG-RAN
Commits
4586f077
Commit
4586f077
authored
Sep 25, 2019
by
Daniel0326
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix lte-enb.c error (ongoing)
parent
c8d3f330
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
targets/RT/USER/lte-enb.c
targets/RT/USER/lte-enb.c
+5
-5
No files found.
targets/RT/USER/lte-enb.c
View file @
4586f077
...
...
@@ -204,14 +204,14 @@ static inline int rxtx(PHY_VARS_eNB *eNB,L1_rxtx_proc_t *proc, char *thread_name
eNB
->
UL_INFO
.
harq_ind
.
harq_indication_body
.
number_of_harqs
||
eNB
->
UL_INFO
.
crc_ind
.
crc_indication_body
.
number_of_crcs
||
eNB
->
UL_INFO
.
rach_ind
.
rach_indication_body
.
number_of_preambles
||
eNB
->
UL_INFO
.
cqi_ind
.
cqi_indication_body
.
number_of_cqis
eNB
->
UL_INFO
.
cqi_ind
.
number_of_cqis
)
{
LOG_D
(
PHY
,
"UL_info[rx_ind:%05d:%d harqs:%05d:%d crcs:%05d:%d preambles:%05d:%d cqis:%d] RX:%04d%d TX:%04d%d num_pdcch_symbols:%d
\n
"
,
NFAPI_SFNSF2DEC
(
eNB
->
UL_INFO
.
rx_ind
.
sfn_sf
),
eNB
->
UL_INFO
.
rx_ind
.
rx_indication_body
.
number_of_pdus
,
NFAPI_SFNSF2DEC
(
eNB
->
UL_INFO
.
harq_ind
.
sfn_sf
),
eNB
->
UL_INFO
.
harq_ind
.
harq_indication_body
.
number_of_harqs
,
NFAPI_SFNSF2DEC
(
eNB
->
UL_INFO
.
crc_ind
.
sfn_sf
),
eNB
->
UL_INFO
.
crc_ind
.
crc_indication_body
.
number_of_crcs
,
NFAPI_SFNSF2DEC
(
eNB
->
UL_INFO
.
rach_ind
.
sfn_sf
),
eNB
->
UL_INFO
.
rach_ind
.
rach_indication_body
.
number_of_preambles
,
eNB
->
UL_INFO
.
cqi_ind
.
cqi_indication_body
.
number_of_cqis
,
eNB
->
UL_INFO
.
cqi_ind
.
number_of_cqis
,
proc
->
frame_rx
,
proc
->
subframe_rx
,
proc
->
frame_tx
,
proc
->
subframe_tx
,
eNB
->
pdcch_vars
[
proc
->
subframe_tx
&
1
].
num_pdcch_symbols
);
}
...
...
@@ -1080,7 +1080,7 @@ void kill_eNB_proc(int inst) {
Each rf chain is is addressed by the card number and the chain on the card. The
rf_map specifies for each CC, on which rf chain the mapping should start. Multiple
antennas are mapped to successive RF chains on the same card. */
int
setup_eNB_buffers
(
PHY_VARS_eNB
**
phy_vars_eNB
,
openair0_config_t
*
openair0_cfg
)
{
int
setup_eNB_buffers
(
PHY_VARS_eNB
_NB_IoT
**
phy_vars_eNB
,
openair0_config_t
*
openair0_cfg
)
{
int
i
,
j
;
int
CC_id
,
card
,
ant
;
...
...
@@ -1400,8 +1400,8 @@ void init_eNB(int single_thread_flag,int wait_for_sync) {
eNB
->
UL_INFO
.
crc_ind
.
crc_indication_body
.
crc_pdu_list
=
eNB
->
crc_pdu_list
;
eNB
->
UL_INFO
.
sr_ind
.
sr_indication_body
.
sr_pdu_list
=
eNB
->
sr_pdu_list
;
eNB
->
UL_INFO
.
harq_ind
.
harq_indication_body
.
harq_pdu_list
=
eNB
->
harq_pdu_list
;
eNB
->
UL_INFO
.
cqi_ind
.
cqi_
indication_body
.
cqi_
pdu_list
=
eNB
->
cqi_pdu_list
;
eNB
->
UL_INFO
.
cqi_ind
.
cqi_
indication_body
.
cqi_
raw_pdu_list
=
eNB
->
cqi_raw_pdu_list
;
eNB
->
UL_INFO
.
cqi_ind
.
cqi_pdu_list
=
eNB
->
cqi_pdu_list
;
eNB
->
UL_INFO
.
cqi_ind
.
cqi_raw_pdu_list
=
eNB
->
cqi_raw_pdu_list
;
eNB
->
prach_energy_counter
=
0
;
}
}
...
...
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