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
1a74c352
Commit
1a74c352
authored
Aug 29, 2018
by
WEI-TAI CHEN
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
solve the conflict type between crc_byte.c and coding_defs.h
parent
7462e43c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
8 deletions
+7
-8
openair1/PHY/CODING/coding_defs.h
openair1/PHY/CODING/coding_defs.h
+6
-8
openair1/PHY/CODING/crc_byte.c
openair1/PHY/CODING/crc_byte.c
+1
-0
No files found.
openair1/PHY/CODING/coding_defs.h
View file @
1a74c352
...
...
@@ -347,7 +347,7 @@ based on 3GPP UMTS/LTE specifications.
@param inPtr Pointer to input byte stream
@param bitlen length of inputs in bits
*/
u
int32_t
crc24a
(
uint8_t
*
inptr
,
uint32_
t
bitlen
);
u
nsigned
int
crc24a
(
unsigned
char
*
inptr
,
in
t
bitlen
);
/*!\fn uint32_t crc24b(uint8_t *inPtr, int32_t bitlen)
\brief This computes a 24-bit crc ('b' variant for transport-block segments)
...
...
@@ -355,25 +355,25 @@ based on 3GPP UMTS/LTE specifications.
@param inPtr Pointer to input byte stream
@param bitlen length of inputs in bits
*/
u
int32_t
crc24b
(
uint8_t
*
inptr
,
uint32_
t
bitlen
);
u
nsigned
int
crc24b
(
unsigned
char
*
inptr
,
in
t
bitlen
);
/*!\fn uint32_t crc16(uint8_t *inPtr, int32_t bitlen)
\brief This computes a 16-bit crc based on 3GPP UMTS specifications.
@param inPtr Pointer to input byte stream
@param bitlen length of inputs in bits*/
u
int32_t
crc16
(
uint8_t
*
inptr
,
uint32_
t
bitlen
);
u
nsigned
int
crc16
(
unsigned
char
*
inptr
,
in
t
bitlen
);
/*!\fn uint32_t crc12(uint8_t *inPtr, int32_t bitlen)
\brief This computes a 12-bit crc based on 3GPP UMTS specifications.
@param inPtr Pointer to input byte stream
@param bitlen length of inputs in bits*/
u
int32_t
crc12
(
uint8_t
*
inptr
,
uint32_
t
bitlen
);
u
nsigned
int
crc12
(
unsigned
char
*
inptr
,
in
t
bitlen
);
/*!\fn uint32_t crc8(uint8_t *inPtr, int32_t bitlen)
\brief This computes a 8-bit crc based on 3GPP UMTS specifications.
@param inPtr Pointer to input byte stream
@param bitlen length of inputs in bits*/
u
int32_t
crc8
(
uint8_t
*
inptr
,
uint32_
t
bitlen
);
u
nsigned
int
crc8
(
unsigned
char
*
inptr
,
in
t
bitlen
);
/*!\fn void phy_viterbi_dot11_sse2(int8_t *y, uint8_t *decoded_bytes, uint16_t n,int offset,int traceback)
\brief This routine performs a SIMD optmized Viterbi decoder for the 802.11 64-state convolutional code. It can be
...
...
@@ -431,9 +431,7 @@ int32_t rate_matching_lte(uint32_t N_coded,
uint32_t
crcbit
(
uint8_t
*
,
int32_t
,
uint32_t
);
unsigned
int
crcbit
(
unsigned
char
*
inputptr
,
int
octetlen
,
unsigned
int
poly
);
int16_t
reverseBits
(
int32_t
,
int32_t
);
void
phy_viterbi_dot11
(
int8_t
*
,
uint8_t
*
,
uint16_t
);
...
...
openair1/PHY/CODING/crc_byte.c
View file @
1a74c352
...
...
@@ -291,3 +291,4 @@ main()
}
#endif
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