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
5cb4486c
Commit
5cb4486c
authored
Dec 21, 2018
by
wujing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix issue about TDD segment(harq_pid issue)
parent
15193520
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
nfapi/open-nFAPI/nfapi/src/nfapi_p7.c
nfapi/open-nFAPI/nfapi/src/nfapi_p7.c
+4
-2
No files found.
nfapi/open-nFAPI/nfapi/src/nfapi_p7.c
View file @
5cb4486c
...
...
@@ -1341,7 +1341,8 @@ static uint8_t pack_hi_dci0_dci_rel8_pdu_value(void *tlv, uint8_t **ppWritePacke
push8
(
dci_pdu_rel8
->
ul_index
,
ppWritePackedMsg
,
end
)
&&
push8
(
dci_pdu_rel8
->
dl_assignment_index
,
ppWritePackedMsg
,
end
)
&&
push32
(
dci_pdu_rel8
->
tpc_bitmap
,
ppWritePackedMsg
,
end
)
&&
push16
(
dci_pdu_rel8
->
transmission_power
,
ppWritePackedMsg
,
end
));
push16
(
dci_pdu_rel8
->
transmission_power
,
ppWritePackedMsg
,
end
)
&&
push8
(
dci_pdu_rel8
->
harq_pid
,
ppWritePackedMsg
,
end
));
}
static
uint8_t
pack_hi_dci0_dci_rel10_pdu_value
(
void
*
tlv
,
uint8_t
**
ppWritePackedMsg
,
uint8_t
*
end
)
...
...
@@ -4187,7 +4188,8 @@ static uint8_t unpack_hi_dci0_dci_pdu_rel8_value(void *tlv, uint8_t **ppReadPack
pull8
(
ppReadPackedMsg
,
&
dci_pdu_rel8
->
ul_index
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
dci_pdu_rel8
->
dl_assignment_index
,
end
)
&&
pull32
(
ppReadPackedMsg
,
&
dci_pdu_rel8
->
tpc_bitmap
,
end
)
&&
pull16
(
ppReadPackedMsg
,
&
dci_pdu_rel8
->
transmission_power
,
end
));
pull16
(
ppReadPackedMsg
,
&
dci_pdu_rel8
->
transmission_power
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
dci_pdu_rel8
->
harq_pid
,
end
));
}
static
uint8_t
unpack_hi_dci0_dci_pdu_rel10_value
(
void
*
tlv
,
uint8_t
**
ppReadPackedMsg
,
uint8_t
*
end
)
...
...
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