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
ad16462e
Commit
ad16462e
authored
Jan 17, 2024
by
Robert Schmidt
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
squash
a1d59bde
Do not define struct in place, gcc 9.4 does not seem to like this
parent
a0370097
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
radio/COMMON/common_lib.h
radio/COMMON/common_lib.h
+6
-3
No files found.
radio/COMMON/common_lib.h
View file @
ad16462e
...
@@ -181,6 +181,11 @@ typedef enum {
...
@@ -181,6 +181,11 @@ typedef enum {
/*! \brief defines the direction of each symbol. Int values intentional and
/*! \brief defines the direction of each symbol. Int values intentional and
* analogous to FAPI/FHI 7.2 */
* analogous to FAPI/FHI 7.2 */
typedef
enum
{
SYMBOL_DIR_DL
=
0
,
SYMBOL_DIR_UL
=
1
,
SYMBOL_DIR_GU
=
2
}
symbol_direction_t
;
typedef
enum
{
SYMBOL_DIR_DL
=
0
,
SYMBOL_DIR_UL
=
1
,
SYMBOL_DIR_GU
=
2
}
symbol_direction_t
;
/*! \brief defines the direction of all symbols in one slot, hence defining the
* format of the entire slot */
typedef
struct
slot_format
{
symbol_direction_t
sym_dir
[
14
];
}
slot_format_t
;
/*! \brief Contains information about PRACH and Frame structure, for
/*! \brief Contains information about PRACH and Frame structure, for
* initialization of split 7 radios which reuses the interface of split 8.
* initialization of split 7 radios which reuses the interface of split 8.
*/
*/
...
@@ -192,9 +197,7 @@ typedef struct split7_config {
...
@@ -192,9 +197,7 @@ typedef struct split7_config {
/*! the TDD period length, if TDD indicated in parent struct */
/*! the TDD period length, if TDD indicated in parent struct */
int
n_tdd_period
;
int
n_tdd_period
;
/*! TDD frame structure, if TDD indicated */
/*! TDD frame structure, if TDD indicated */
struct
{
slot_format_t
slots
[
160
];
symbol_direction_t
sym_dir
[
14
];
}
slots
[
160
];
}
split7_config_t
;
}
split7_config_t
;
/*! \brief RF frontend parameters set by application */
/*! \brief RF frontend parameters set by application */
...
...
FANG WANG
@wf
mentioned in commit
4d3db482
·
Feb 01, 2024
mentioned in commit
4d3db482
mentioned in commit 4d3db482023acacff34c208475f8cc9d9c63b502
Toggle commit list
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