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
e8fe6cef
Commit
e8fe6cef
authored
Oct 03, 2024
by
Rúben Soares Silva
Committed by
Robert Schmidt
Nov 29, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Avoid packing/unpacking parameters not used by Aerial
parent
bcbf7ab9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
6 deletions
+8
-6
nfapi/open-nFAPI/fapi/src/nr_fapi_p7.c
nfapi/open-nFAPI/fapi/src/nr_fapi_p7.c
+8
-6
No files found.
nfapi/open-nFAPI/fapi/src/nr_fapi_p7.c
View file @
e8fe6cef
...
...
@@ -369,11 +369,11 @@ static uint8_t pack_dl_tti_pdsch_pdu_rel15_value(void *tlv, uint8_t **ppWritePac
return
0
;
}
}
#ifndef ENABLE_AERIAL
if
(
!
push8
(
value
->
maintenance_parms_v3
.
ldpcBaseGraph
,
ppWritePackedMsg
,
end
)
||
!
push32
(
value
->
maintenance_parms_v3
.
tbSizeLbrmBytes
,
ppWritePackedMsg
,
end
))
return
0
;
#endif
return
1
;
}
...
...
@@ -579,11 +579,11 @@ static uint8_t unpack_dl_tti_pdsch_pdu_rel15_value(void *tlv, uint8_t **ppReadPa
return
0
;
}
}
#ifndef ENABLE_AERIAL
if
(
!
pull8
(
ppReadPackedMsg
,
&
value
->
maintenance_parms_v3
.
ldpcBaseGraph
,
end
)
||
!
pull32
(
ppReadPackedMsg
,
&
value
->
maintenance_parms_v3
.
tbSizeLbrmBytes
,
end
))
return
0
;
#endif
return
1
;
}
...
...
@@ -817,9 +817,11 @@ static uint8_t pack_ul_tti_request_pusch_pdu(nfapi_nr_pusch_pdu_t *pusch_pdu, ui
if
(
!
(
pack_nr_rx_beamforming_pdu
(
&
pusch_pdu
->
beamforming
,
ppWritePackedMsg
,
end
)))
{
return
0
;
}
#ifndef ENABLE_AERIAL
if
(
!
(
push8
(
pusch_pdu
->
maintenance_parms_v3
.
ldpcBaseGraph
,
ppWritePackedMsg
,
end
)
&&
push32
(
pusch_pdu
->
maintenance_parms_v3
.
tbSizeLbrmBytes
,
ppWritePackedMsg
,
end
)))
return
0
;
#endif
return
1
;
}
...
...
@@ -1137,11 +1139,11 @@ static uint8_t unpack_ul_tti_request_pusch_pdu(nfapi_nr_pusch_pdu_t *pusch_pdu,
if
(
!
(
unpack_nr_rx_beamforming_pdu
(
&
pusch_pdu
->
beamforming
,
ppReadPackedMsg
,
end
)))
{
return
0
;
}
#ifndef ENABLE_AERIAL
if
(
!
(
pull8
(
ppReadPackedMsg
,
&
pusch_pdu
->
maintenance_parms_v3
.
ldpcBaseGraph
,
end
)
&&
pull32
(
ppReadPackedMsg
,
&
pusch_pdu
->
maintenance_parms_v3
.
tbSizeLbrmBytes
,
end
)))
return
0
;
#endif
return
1
;
}
...
...
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