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
lizhongxiao
OpenXG-RAN
Commits
819ea956
Commit
819ea956
authored
Oct 07, 2019
by
lipingyu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lte-enb-nbiot.c debug
parent
dccb3b51
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
310 deletions
+8
-310
openair1/PHY/defs_eNB.h
openair1/PHY/defs_eNB.h
+3
-1
targets/RT/USER/lte-enb-nbiot.c
targets/RT/USER/lte-enb-nbiot.c
+4
-308
targets/RT/USER/lte-ru.c
targets/RT/USER/lte-ru.c
+1
-1
No files found.
openair1/PHY/defs_eNB.h
View file @
819ea956
...
...
@@ -381,7 +381,7 @@ typedef struct RU_t_s{
int
num_eNB
;
/// list of eNBs using this RU
struct
PHY_VARS_eNB_s
*
eNB_list
[
NUMBER_OF_eNB_MAX
];
/// list of
eNBs
using this RU
/// list of
NB-IoT
using this RU
struct
PHY_VARS_eNB_NB_IoT_s
*
eNB_nbiot_list
[
NUMBER_OF_eNB_MAX
];
/// Mapping of antenna ports to RF chain index
openair0_rf_map
rf_map
;
...
...
@@ -425,6 +425,8 @@ typedef struct RU_t_s{
#endif
/// function pointer to eNB entry routine
void
(
*
eNB_top
)(
struct
PHY_VARS_eNB_s
*
eNB
,
int
frame_rx
,
int
subframe_rx
,
char
*
string
,
struct
RU_t_s
*
ru
);
/// function pointer to NB-IoT entry routine
void
(
*
eNB_nb_iot_top
)(
struct
PHY_VARS_eNB_NB_IoT_s
*
eNB
,
int
frame_rx
,
int
subframe_rx
,
char
*
string
,
struct
RU_t_s
*
ru
);
/// Timing statistics
time_stats_t
ofdm_demod_stats
;
/// Timing statistics (TX)
...
...
targets/RT/USER/lte-enb-nbiot.c
View file @
819ea956
This diff is collapsed.
Click to expand it.
targets/RT/USER/lte-ru.c
View file @
819ea956
...
...
@@ -1182,7 +1182,7 @@ void wakeup_L1s(RU_t *ru) {
}
}
// call NB-IOT RX/TX entry-point from ru_thread directly
if
(
ru
->
eNB_nb_iot_top
!=
0
)
ru
->
eNB_nb_iot_top
(
eNB_nb
_
iot_list
[
0
],
proc
->
frame_rx
,
proc
->
subframe_rx
,
string
,
ru
);
if
(
ru
->
eNB_nb_iot_top
!=
0
)
ru
->
eNB_nb_iot_top
(
eNB_nbiot_list
[
0
],
proc
->
frame_rx
,
proc
->
subframe_rx
,
string
,
ru
);
}
/*
AssertFatal(0==pthread_mutex_lock(&ruproc->mutex_eNBs),"");
...
...
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