Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG UE
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 UE
Commits
9b56bac2
Commit
9b56bac2
authored
Jun 12, 2020
by
WANG Tsu-Han
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixes for PARALLEL_RU_L1_TRX_SPLIT from Laurent
parent
e16241fa
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
1 deletion
+7
-1
openair1/PHY/LTE_TRANSPORT/dlsch_coding.c
openair1/PHY/LTE_TRANSPORT/dlsch_coding.c
+1
-1
targets/RT/USER/lte-softmodem.c
targets/RT/USER/lte-softmodem.c
+2
-0
targets/RT/USER/lte-softmodem.h
targets/RT/USER/lte-softmodem.h
+4
-0
No files found.
openair1/PHY/LTE_TRANSPORT/dlsch_coding.c
View file @
9b56bac2
...
@@ -422,6 +422,6 @@ int dlsch_encoding(PHY_VARS_eNB *eNB,
...
@@ -422,6 +422,6 @@ int dlsch_encoding(PHY_VARS_eNB *eNB,
else
else
r_offset
+=
Nl
*
Qm
*
((
GpmodC
==
0
?
0
:
1
)
+
(
Gp
/
C
));
r_offset
+=
Nl
*
Qm
*
((
GpmodC
==
0
?
0
:
1
)
+
(
Gp
/
C
));
}
}
VCD_SIGNAL_DUMPER_DUMP_FUNCTION_BY_NAME
(
VCD_SIGNAL_DUMPER_FUNCTIONS_ENB_DLSCH_ENCODING
,
VCD_FUNCTION_OUT
);
return
(
0
);
return
(
0
);
}
}
targets/RT/USER/lte-softmodem.c
View file @
9b56bac2
...
@@ -170,6 +170,7 @@ extern void init_eNB_afterRU(void);
...
@@ -170,6 +170,7 @@ extern void init_eNB_afterRU(void);
int
transmission_mode
=
1
;
int
transmission_mode
=
1
;
int
emulate_rf
=
0
;
int
emulate_rf
=
0
;
int
numerology
=
0
;
int
numerology
=
0
;
int
usrp_tx_thread
=
0
;
THREAD_STRUCT
thread_struct
;
THREAD_STRUCT
thread_struct
;
/* struct for ethernet specific parameters given in eNB conf file */
/* struct for ethernet specific parameters given in eNB conf file */
...
@@ -659,6 +660,7 @@ int main ( int argc, char **argv )
...
@@ -659,6 +660,7 @@ int main ( int argc, char **argv )
initTpool
(
"n"
,
L1proc
->
threadPool
,
true
);
initTpool
(
"n"
,
L1proc
->
threadPool
,
true
);
initNotifiedFIFO
(
L1proc
->
respEncode
);
initNotifiedFIFO
(
L1proc
->
respEncode
);
initNotifiedFIFO
(
L1proc
->
respDecode
);
initNotifiedFIFO
(
L1proc
->
respDecode
);
RC
.
eNB
[
x
][
CC_id
]
->
proc
.
L1_proc_tx
.
threadPool
=
L1proc
->
threadPool
;
}
}
...
...
targets/RT/USER/lte-softmodem.h
View file @
9b56bac2
...
@@ -155,6 +155,10 @@ extern int sync_var;
...
@@ -155,6 +155,10 @@ extern int sync_var;
extern
int
transmission_mode
;
extern
int
transmission_mode
;
extern
double
cpuf
;
extern
double
cpuf
;
extern
int
emulate_rf
;
extern
int
numerology
;
extern
int
usrp_tx_thread
;
// In lte-enb.c
// In lte-enb.c
extern
void
stop_eNB
(
int
);
extern
void
stop_eNB
(
int
);
extern
void
kill_eNB_proc
(
int
inst
);
extern
void
kill_eNB_proc
(
int
inst
);
...
...
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