Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
openairinterface5G
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Patricio Latini
openairinterface5G
Commits
e0bf855f
Commit
e0bf855f
authored
8 years ago
by
Bilel
Browse files
Options
Downloads
Patches
Plain Diff
initialize max retans tx Mlimit
parent
e04e8a62
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
openair1/PHY/INIT/defs.h
+12
-0
12 additions, 0 deletions
openair1/PHY/INIT/defs.h
openair1/PHY/LTE_TRANSPORT/ulsch_coding.c
+2
-0
2 additions, 0 deletions
openair1/PHY/LTE_TRANSPORT/ulsch_coding.c
openair2/LAYER2/MAC/main.c
+1
-0
1 addition, 0 deletions
openair2/LAYER2/MAC/main.c
with
15 additions
and
0 deletions
openair1/PHY/INIT/defs.h
+
12
−
0
View file @
e0bf855f
...
@@ -206,7 +206,19 @@ void phy_config_dedicated_ue(module_id_t Mod_id,
...
@@ -206,7 +206,19 @@ void phy_config_dedicated_ue(module_id_t Mod_id,
uint8_t
CH_index
,
uint8_t
CH_index
,
struct
PhysicalConfigDedicated
*
physicalConfigDedicated
);
struct
PhysicalConfigDedicated
*
physicalConfigDedicated
);
/*!
\fn void phy_config_harq_ue(module_id_t Mod_id,uint8_t CC_id,uint8_t CH_index,
uint16_t max_harq_tx)
\brief Configure UE UL max harq Tx.
\details Invoked upon reception of RRCConnectionSetup or RRCConnectionReconfiguration from eNB.
@param Mod_id Instance ID for eNB
@param CC_id Component Carrier index
@param CH_index Index of eNB for this configuration
@param max_harq_tx max harq tx information
*/
void
phy_config_harq_ue
(
module_id_t
Mod_id
,
int
CC_id
,
uint8_t
CH_index
,
uint16_t
max_harq_tx
);
/**
/**
\brief Configure UE MBSFN common parameters.
\brief Configure UE MBSFN common parameters.
\details Invoked upon reception of SIB13 from eNB.
\details Invoked upon reception of SIB13 from eNB.
...
...
This diff is collapsed.
Click to expand it.
openair1/PHY/LTE_TRANSPORT/ulsch_coding.c
+
2
−
0
View file @
e0bf855f
...
@@ -140,6 +140,8 @@ LTE_UE_ULSCH_t *new_ue_ulsch(unsigned char N_RB_UL, uint8_t abstraction_flag)
...
@@ -140,6 +140,8 @@ LTE_UE_ULSCH_t *new_ue_ulsch(unsigned char N_RB_UL, uint8_t abstraction_flag)
if
(
ulsch
)
{
if
(
ulsch
)
{
memset
(
ulsch
,
0
,
sizeof
(
LTE_UE_ULSCH_t
));
memset
(
ulsch
,
0
,
sizeof
(
LTE_UE_ULSCH_t
));
ulsch
->
Mlimit
=
4
;
for
(
i
=
0
;
i
<
8
;
i
++
)
{
for
(
i
=
0
;
i
<
8
;
i
++
)
{
ulsch
->
harq_processes
[
i
]
=
(
LTE_UL_UE_HARQ_t
*
)
malloc16
(
sizeof
(
LTE_UL_UE_HARQ_t
));
ulsch
->
harq_processes
[
i
]
=
(
LTE_UL_UE_HARQ_t
*
)
malloc16
(
sizeof
(
LTE_UL_UE_HARQ_t
));
...
...
This diff is collapsed.
Click to expand it.
openair2/LAYER2/MAC/main.c
+
1
−
0
View file @
e0bf855f
...
@@ -527,6 +527,7 @@ int l2_init(LTE_DL_FRAME_PARMS *frame_parms,int eMBMS_active, char *uecap_xer,ui
...
@@ -527,6 +527,7 @@ int l2_init(LTE_DL_FRAME_PARMS *frame_parms,int eMBMS_active, char *uecap_xer,ui
mac_xface
->
phy_config_dedicated_eNB
=
phy_config_dedicated_eNB
;
mac_xface
->
phy_config_dedicated_eNB
=
phy_config_dedicated_eNB
;
mac_xface
->
phy_config_dedicated_ue
=
phy_config_dedicated_ue
;
mac_xface
->
phy_config_dedicated_ue
=
phy_config_dedicated_ue
;
mac_xface
->
phy_config_harq_ue
=
phy_config_harq_ue
;
mac_xface
->
get_lte_frame_parms
=
get_lte_frame_parms
;
mac_xface
->
get_lte_frame_parms
=
get_lte_frame_parms
;
mac_xface
->
get_mu_mimo_mode
=
get_mu_mimo_mode
;
mac_xface
->
get_mu_mimo_mode
=
get_mu_mimo_mode
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment