Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kirill Smelkov
slapos
Commits
b4cf768f
Commit
b4cf768f
authored
Sep 13, 2023
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
8f931619
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
107 additions
and
664 deletions
+107
-664
software/ors-amarisoft/cell/nr/input-schema.json
software/ors-amarisoft/cell/nr/input-schema.json
+2
-1
software/ors-amarisoft/config/enb.cfg
software/ors-amarisoft/config/enb.cfg
+91
-652
software/ors-amarisoft/slapos-render-config.py
software/ors-amarisoft/slapos-render-config.py
+14
-11
No files found.
software/ors-amarisoft/cell/nr/input-schema.json
View file @
b4cf768f
...
...
@@ -7,7 +7,8 @@
"required"
:
[
"bandwidth"
,
"dl_nr_arfcn"
"dl_nr_arfcn"
,
"nr_band"
],
"properties"
:
{
"cell_type"
:
{
...
...
software/ors-amarisoft/config/enb.cfg
View file @
b4cf768f
This diff is collapsed.
Click to expand it.
software/ors-amarisoft/slapos-render-config.py
View file @
b4cf768f
...
...
@@ -45,7 +45,7 @@ CELL1_b = {
}
}
#
another couple of
cells that use CPRI-based Lopcomm radio units
#
LTE + NR
cells that use CPRI-based Lopcomm radio units
# here we instantiate RUs separately since embedding RU into a cell is demonstrated by CELL1_a above
RU2_a
=
{
'ru_type'
:
'lopcomm'
,
...
...
@@ -74,23 +74,26 @@ CELL2_a = {
'bandwidth'
:
'5 MHz'
,
'dl_earfcn'
:
3350
,
# 2680 MHz
'pci'
:
21
,
'cell_id'
:
"0x21"
,
'cell_id'
:
'0x21'
,
'ru'
:
{
# CELL2_a links to RU2_a by its reference
'ru_type'
:
'ru_ref'
,
'ru_ref'
:
'RU2_a'
}
}
CELL2_b
=
copy
.
deepcopy
(
CELL2_a
)
CELL2_b
.
update
({
'dl_earfcn'
:
3410
,
# 2686 MHz
CELL2_b
=
{
'cell_type'
:
'nr'
,
'rf_mode'
:
'fdd'
,
'bandwidth'
:
5
,
'dl_nr_arfcn'
:
537200
,
# 2686 MHz
'nr_band'
:
7
,
'pci'
:
22
,
'cell_id'
:
"0x22"
})
CELL2_b
[
'ru'
][
'ru_ref'
]
=
'RU2_b'
# XXX CELL3 FDD NR
'cell_id'
:
'0x22'
,
'ru'
:
{
'ru_type'
:
'ru_ref'
,
'ru_ref'
:
'RU2_b'
}
}
jjdumps
=
lambda
obj
:
json
.
dumps
(
json
.
dumps
(
obj
))
jCELL1_a
=
jjdumps
(
CELL1_a
)
...
...
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