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
wangjie
OpenXG-RAN
Commits
6416c6d4
Commit
6416c6d4
authored
Jun 04, 2018
by
Raymond Knopp
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
minor changes to remove global variable in dci handling
parent
3fd24705
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
7 deletions
+8
-7
openair1/PHY/LTE_TRANSPORT/dci.c
openair1/PHY/LTE_TRANSPORT/dci.c
+5
-3
openair2/RRC/LTE/rrc_eNB.c
openair2/RRC/LTE/rrc_eNB.c
+3
-1
targets/RT/USER/lte-uesoftmodem.c
targets/RT/USER/lte-uesoftmodem.c
+0
-3
No files found.
openair1/PHY/LTE_TRANSPORT/dci.c
View file @
6416c6d4
...
...
@@ -57,8 +57,8 @@
static
uint8_t
d
[
3
*
(
MAX_DCI_SIZE_BITS
+
16
)
+
96
];
static
uint8_t
w
[
3
*
3
*
(
MAX_DCI_SIZE_BITS
+
16
)];
//
static uint8_t d[3*(MAX_DCI_SIZE_BITS + 16) + 96];
//
static uint8_t w[3*3*(MAX_DCI_SIZE_BITS+16)];
void
dci_encoding
(
uint8_t
*
a
,
uint8_t
A
,
...
...
@@ -70,6 +70,8 @@ void dci_encoding(uint8_t *a,
uint8_t
D
=
(
A
+
16
);
uint32_t
RCC
;
uint8_t
d
[
3
*
(
MAX_DCI_SIZE_BITS
+
16
)
+
96
];
uint8_t
w
[
3
*
3
*
(
MAX_DCI_SIZE_BITS
+
16
)];
#ifdef DEBUG_DCI_ENCODING
int32_t
i
;
...
...
@@ -169,7 +171,7 @@ uint8_t *generate_dci0(uint8_t *dci,
return
(
e
+
coded_bits
);
}
uint32_t
Y
;
//
uint32_t Y;
...
...
openair2/RRC/LTE/rrc_eNB.c
View file @
6416c6d4
...
...
@@ -29,7 +29,9 @@
*/
#define RRC_ENB
#define RRC_ENB_C
#include <asn_application.h>
#include <asn_internal.h>
/* for _ASN_DEFAULT_STACK_MAX */
#include <per_encoder.h>
#include "rrc_defs.h"
#include "rrc_extern.h"
#include "assertions.h"
...
...
targets/RT/USER/lte-uesoftmodem.c
View file @
6416c6d4
...
...
@@ -1098,9 +1098,6 @@ int main( int argc, char **argv )
printf
(
"ITTI tasks created
\n
"
);
#endif
// init UE_PF_PO and mutex lock
pthread_mutex_init
(
&
ue_pf_po_mutex
,
NULL
);
memset
(
&
UE_PF_PO
[
0
][
0
],
0
,
sizeof
(
UE_PF_PO_t
)
*
NUMBER_OF_UE_MAX
*
MAX_NUM_CCs
);
mlockall
(
MCL_CURRENT
|
MCL_FUTURE
);
...
...
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