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
bb47c46c
Commit
bb47c46c
authored
Aug 07, 2018
by
Calvin HSU
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
UE: samll error fixed.
parent
511562bb
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
cmake_targets/CMakeLists.txt
cmake_targets/CMakeLists.txt
+1
-1
nfapi/open-nFAPI/nfapi/public_inc/fapi_nr_ue_interface.h
nfapi/open-nFAPI/nfapi/public_inc/fapi_nr_ue_interface.h
+1
-1
openair2/NR_UE_PHY_INTERFACE/NR_IF_Module.c
openair2/NR_UE_PHY_INTERFACE/NR_IF_Module.c
+1
-1
No files found.
cmake_targets/CMakeLists.txt
View file @
bb47c46c
...
@@ -1573,7 +1573,7 @@ set ( NR_LTE_UE_REUSE_SRC
...
@@ -1573,7 +1573,7 @@ set ( NR_LTE_UE_REUSE_SRC
${
OPENAIR1_DIR
}
/PHY/LTE_ESTIMATION/lte_dl_channel_estimation.c
${
OPENAIR1_DIR
}
/PHY/LTE_ESTIMATION/lte_dl_channel_estimation.c
${
OPENAIR1_DIR
}
/PHY/LTE_ESTIMATION/lte_ue_measurements.c
${
OPENAIR1_DIR
}
/PHY/LTE_ESTIMATION/lte_ue_measurements.c
${
OPENAIR1_DIR
}
/PHY/LTE_UE_TRANSPORT/dlsch_demodulation.c
${
OPENAIR1_DIR
}
/PHY/LTE_UE_TRANSPORT/dlsch_demodulation.c
${
OPENAIR1_DIR
}
/PHY/LTE_UE_TRANSPORT/dlsch_llr_computation_avx2.c
#
${OPENAIR1_DIR}/PHY/LTE_UE_TRANSPORT/dlsch_llr_computation_avx2.c
)
)
add_library
(
NR_LTE_UE_REUSE_LIB
add_library
(
NR_LTE_UE_REUSE_LIB
...
...
nfapi/open-nFAPI/nfapi/public_inc/fapi_nr_ue_interface.h
View file @
bb47c46c
...
@@ -240,7 +240,7 @@ typedef struct {
...
@@ -240,7 +240,7 @@ typedef struct {
}
fapi_nr_dl_config_dci_pdu
;
}
fapi_nr_dl_config_dci_pdu
;
typedef
struct
{
typedef
struct
{
uint16_t
rnti
;
uint8_t
format_indicator
;
//1 bit
uint8_t
format_indicator
;
//1 bit
uint16_t
frequency_domain_assignment
;
//up to 9 bits
uint16_t
frequency_domain_assignment
;
//up to 9 bits
uint8_t
time_domain_assignment
;
// 4 bits
uint8_t
time_domain_assignment
;
// 4 bits
...
...
openair2/NR_UE_PHY_INTERFACE/NR_IF_Module.c
View file @
bb47c46c
...
@@ -160,7 +160,7 @@ int8_t nr_ue_dl_indication(nr_downlink_indication_t *dl_info){
...
@@ -160,7 +160,7 @@ int8_t nr_ue_dl_indication(nr_downlink_indication_t *dl_info){
dl_config
->
dl_config_request_body
[
dl_config
->
number_pdus
].
pdu_type
=
FAPI_NR_DL_CONFIG_TYPE_DLSCH
;
dl_config
->
dl_config_request_body
[
dl_config
->
number_pdus
].
pdu_type
=
FAPI_NR_DL_CONFIG_TYPE_DLSCH
;
// mapping into DL_CONFIG_REQ for DL-SCH
// mapping into DL_CONFIG_REQ for DL-SCH
fapi_nr_dl_config_dlsch_pdu_rel15_t
*
dlsch_config_pdu
=
&
dl_config
->
dl_config_request_body
[
dl_config
->
number_pdus
].
dlsch_pdu
.
dlsch_config_rel15
fapi_nr_dl_config_dlsch_pdu_rel15_t
*
dlsch_config_pdu
=
&
dl_config
->
dl_config_request_body
[
dl_config
->
number_pdus
].
dlsch_pdu
.
dlsch_config_rel15
;
dlsch_config_pdu
->
format_indicator
=
dci
->
dci_format
;
dlsch_config_pdu
->
format_indicator
=
dci
->
dci_format
;
dlsch_config_pdu
->
frequency_domain_assignment
=
dci
->
frequency_domain_resouce_assignment
;
dlsch_config_pdu
->
frequency_domain_assignment
=
dci
->
frequency_domain_resouce_assignment
;
dlsch_config_pdu
->
time_domain_assignment
=
dci
->
time_domain_resource_assignment
;
dlsch_config_pdu
->
time_domain_assignment
=
dci
->
time_domain_resource_assignment
;
...
...
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