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
4d3db482
Commit
4d3db482
authored
Jan 17, 2024
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "squash
a1d59bde
Do not define struct in place, gcc 9.4 does not seem to like this"
This reverts commit
ad16462e
.
parent
84b36067
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
6 deletions
+3
-6
radio/COMMON/common_lib.h
radio/COMMON/common_lib.h
+3
-6
No files found.
radio/COMMON/common_lib.h
View file @
4d3db482
...
...
@@ -181,11 +181,6 @@ typedef enum {
/*! \brief defines the direction of each symbol. Int values intentional and
* analogous to FAPI/FHI 7.2 */
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
* initialization of split 7 radios which reuses the interface of split 8.
*/
...
...
@@ -197,7 +192,9 @@ typedef struct split7_config {
/*! the TDD period length, if TDD indicated in parent struct */
int
n_tdd_period
;
/*! TDD frame structure, if TDD indicated */
slot_format_t
slots
[
160
];
struct
{
symbol_direction_t
sym_dir
[
14
];
}
slots
[
160
];
}
split7_config_t
;
/*! \brief RF frontend parameters set by application */
...
...
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