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
Michael Black
OpenXG-RAN
Commits
01c2f79f
Commit
01c2f79f
authored
Nov 11, 2021
by
David Kim
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed build error in eNB ocp.
parent
d118cbfa
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
7 additions
and
4 deletions
+7
-4
cmake_targets/CMakeLists.txt
cmake_targets/CMakeLists.txt
+2
-0
executables/main-fs6.c
executables/main-fs6.c
+3
-1
executables/nr-uesoftmodem.c
executables/nr-uesoftmodem.c
+0
-1
openair3/NAS/UE/nas_ue_task.c
openair3/NAS/UE/nas_ue_task.c
+2
-0
targets/RT/USER/lte-softmodem.c
targets/RT/USER/lte-softmodem.c
+0
-1
targets/RT/USER/lte-uesoftmodem.c
targets/RT/USER/lte-uesoftmodem.c
+0
-1
No files found.
cmake_targets/CMakeLists.txt
View file @
01c2f79f
...
...
@@ -2891,6 +2891,7 @@ add_executable(ocp-enb
${
OPENAIR_DIR
}
/common/utils/system.c
${
OPENAIR_DIR
}
/common/utils/lte/ue_power.c
${
OPENAIR_DIR
}
/common/utils/lte/prach_utils.c
${
PHY_INTERFACE_DIR
}
/queue.c
${
XFORMSINTERFACE_SOURCE
}
${
T_SOURCE
}
${
CONFIG_SOURCES
}
...
...
@@ -3074,6 +3075,7 @@ add_executable(ocp-gnb
${
OPENAIR_DIR
}
/common/utils/nr/nr_common.c
${
OPENAIR_DIR
}
/common/utils/utils.c
${
OPENAIR_DIR
}
/common/utils/system.c
${
PHY_INTERFACE_DIR
}
/queue.c
${
XFORMS_SOURCE_NR
}
${
T_SOURCE
}
${
CONFIG_SOURCES
}
...
...
executables/main-fs6.c
View file @
01c2f79f
...
...
@@ -553,7 +553,9 @@ void fill_rx_indication_from_split(uint8_t *bufferZone, PHY_VARS_eNB *eNB,int UE
pdu
->
rx_indication_rel8
.
tl
.
tag
=
NFAPI_RX_INDICATION_REL8_TAG
;
pdu
->
rx_indication_rel8
.
length
=
eNB
->
ulsch
[
UE_id
]
->
harq_processes
[
harq_pid
]
->
TBS
>>
3
;
pdu
->
rx_indication_rel8
.
offset
=
1
;
// DJP - I dont understand - but broken unless 1 ???? 0; // filled in at the end of the UL_INFO formation
pdu
->
data
=
eNB
->
ulsch
[
UE_id
]
->
harq_processes
[
harq_pid
]
->
decodedBytes
;
memcpy
(
pdu
->
rx_ind_data
,
eNB
->
ulsch
[
UE_id
]
->
harq_processes
[
harq_pid
]
->
decodedBytes
,
pdu
->
rx_indication_rel8
.
length
);
// estimate timing advance for MAC
timing_advance_update
=
ul_propa
[
UE_id
].
ta
;
...
...
executables/nr-uesoftmodem.c
View file @
01c2f79f
...
...
@@ -155,7 +155,6 @@ char uecap_xer[1024];
*/
uint8_t
abstraction_flag
=
0
;
uint16_t
ue_idx_standalone
=
0xFFFF
;
/*---------------------BMC: timespec helpers -----------------------------*/
...
...
openair3/NAS/UE/nas_ue_task.c
View file @
01c2f79f
...
...
@@ -42,6 +42,8 @@
extern
unsigned
char
NB_eNB_INST
;
extern
uint16_t
NB_UE_INST
;
uint16_t
ue_idx_standalone
=
0xFFFF
;
char
*
make_port_str_from_ueid
(
const
char
*
base_port_str
,
int
ueid
);
static
int
nas_ue_process_events
(
nas_user_container_t
*
users
,
struct
epoll_event
*
events
,
int
nb_events
)
...
...
targets/RT/USER/lte-softmodem.c
View file @
01c2f79f
...
...
@@ -181,7 +181,6 @@ eth_params_t *eth_params;
double
cpuf
;
int
oaisim_flag
=
0
;
uint16_t
ue_idx_standalone
=
0xFFFF
;
uint8_t
proto_agent_flag
=
0
;
...
...
targets/RT/USER/lte-uesoftmodem.c
View file @
01c2f79f
...
...
@@ -276,7 +276,6 @@ void exit_function(const char *file, const char *function, const int line, const
}
extern
int16_t
dlsch_demod_shift
;
uint16_t
ue_idx_standalone
=
0xFFFF
;
uint16_t
node_number
;
static
void
get_options
(
void
)
{
int
CC_id
=
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