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
e8d8d7b3
Commit
e8d8d7b3
authored
Aug 28, 2023
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
c294ccc4
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
183 additions
and
181 deletions
+183
-181
software/ors-amarisoft/cell/input-schema.json
software/ors-amarisoft/cell/input-schema.json
+64
-181
software/ors-amarisoft/cell/lte/input-schema.json
software/ors-amarisoft/cell/lte/input-schema.json
+61
-0
software/ors-amarisoft/cell/nr/input-schema.json
software/ors-amarisoft/cell/nr/input-schema.json
+58
-0
No files found.
software/ors-amarisoft/cell/input-schema.json
View file @
e8d8d7b3
...
...
@@ -4,207 +4,90 @@
"title"
:
"Cell"
,
"type"
:
"object"
,
"oneOf"
:
[
{
"title"
:
"LTE Cell"
,
"type"
:
"object"
,
"required"
:
[
"cell_type"
,
"rf_mode"
,
"bandwidth"
,
"dl_earfcn"
,
"pci"
,
"cell_id"
,
"tac"
,
"ru"
],
"properties"
:
{
"cell_type"
:
{
"const"
:
"lte"
,
"template"
:
"lte"
,
"options"
:
{
"hidden"
:
true
}
},
"rf_mode"
:
{
"$ref"
:
"#/$defs/rf_mode"
},
"tdd_ul_dl_config"
:
{
"title"
:
"TDD Configuration"
,
"type"
:
"string"
,
"enum"
:
[
"[Configuration 2] 5ms 2UL 6DL (default)"
,
"[Configuration 6] 5ms 5UL 3DL (maximum uplink)"
],
"default"
:
"5ms 2UL 7DL 4/6 (default)"
,
"options"
:
{
"dependencies"
:
{
"rf_mode"
:
"tdd"
}
}
},
"bandwidth"
:
{
"title"
:
"Bandwidth"
,
"description"
:
"Downlink Bandwidth"
,
"type"
:
"string"
,
"enum"
:
[
"1.4 MHz"
,
"3 MHz"
,
"5 MHz"
,
"10 MHz"
,
"15 MHz"
,
"20 MHz"
]
},
"dl_earfcn"
:
{
"title"
:
"DL EARFCN"
,
"description"
:
"Downlink E-UTRA Absolute Radio Frequency Channel Number of the cell"
,
"type"
:
"integer"
},
"pci"
:
{
"$ref"
:
"#/$defs/pci"
,
"default"
:
1
},
"cell_id"
:
{
"$ref"
:
"#/$defs/cell_id"
},
"tac"
:
{
"title"
:
"Tracking Area Code"
,
"description"
:
"Tracking Area Code in hexadecimal representation (range 0x0000 to 0xffff)"
,
"default"
:
"0x0001"
,
"type"
:
"string"
},
"ru"
:
{
"$ref"
:
"#/$defs/ru"
}
}
},
{
"$ref"
:
"lte/input-schema.json"
},
{
"$ref"
:
"nr/input-schema.json"
}
],
{
"title"
:
"NR Cell"
,
"type"
:
"object"
,
"$defs"
:
{
"cell-common"
:
{
"required"
:
[
"cell_type"
,
"rf_mode"
,
"bandwidth"
,
"dl_nr_arfcn"
,
"pci"
,
"cell_id"
,
"ru"
],
"properties"
:
{
"cell_type"
:
{
"const"
:
"nr"
,
"template"
:
"nr"
,
"options"
:
{
"hidden"
:
true
}
},
"rf_mode"
:
{
"$ref"
:
"#/$defs/rf_mode"
},
"tdd_ul_dl_config"
:
{
"title"
:
"TDD Configuration"
,
"type"
:
"string"
,
"enum"
:
[
"5ms 2UL 7DL 4/6 (default)"
,
"2.5ms 1UL 3DL 2/10"
,
"5ms 8UL 3DL 2/10 (maximum uplink)"
],
"default"
:
"5ms 2UL 7DL 4/6 (default)"
,
"options"
:
{
"dependencies"
:
{
"rf_mode"
:
"tdd"
}
}
},
"bandwidth"
:
{
"title"
:
"Bandwidth"
,
"description"
:
"Downlink Bandwidth (in MHz)"
,
"type"
:
"number"
"options"
:
{
"hidden"
:
true
}
},
"dl_nr_arfcn"
:
{
"title"
:
"DL NR ARFCN"
,
"description"
:
"Downlink NR Absolute Radio Frequency Channel Number of the cell"
,
"type"
:
"integer"
"rf_mode"
:
{
"title"
:
"RF mode"
,
"description"
:
"Mode for TX/RX radio multiplexing: Frequency- or Time- Domain Division"
,
"type"
:
"string"
,
"enum"
:
[
"fdd"
,
"tdd"
],
"propertyOrder"
:
101
},
"
nr_band
"
:
{
"title"
:
"
NR band
"
,
"description"
:
"
NR band number
"
,
"
pci
"
:
{
"title"
:
"
Physical Cell ID
"
,
"description"
:
"
Physical Cell ID
"
,
"type"
:
"integer"
},
"
ssb_pos_bitmap
"
:
{
"title"
:
"
SSB Position Bitmap
"
,
"description"
:
"
SSB position bitmap in bits (4, 8 or 64 bits depending on the DL frequency).
"
,
"
cell_id
"
:
{
"title"
:
"
Cell ID
"
,
"description"
:
"
Cell ID
"
,
"type"
:
"string"
,
"default"
:
"10000000"
},
"pci"
:
{
"$ref"
:
"#/$defs/pci"
,
"default"
:
500
"default"
:
"0x01"
},
"cell_id"
:
{
"$ref"
:
"#/$defs/cell_id"
},
"ru"
:
{
"$ref"
:
"#/$defs/ru"
}
}
}
],
"$defs"
:
{
"rf_mode"
:
{
"title"
:
"RF mode"
,
"description"
:
"Mode for TX/RX radio multiplexing: Frequency- or Time- Domain Division"
,
"type"
:
"string"
,
"enum"
:
[
"fdd"
,
"tdd"
]
},
"pci"
:
{
"title"
:
"Physical Cell ID"
,
"description"
:
"Physical Cell ID"
,
"type"
:
"integer"
},
"cell_id"
:
{
"title"
:
"Cell ID"
,
"description"
:
"Cell ID"
,
"type"
:
"string"
,
"default"
:
"0x01"
},
"ru"
:
{
"title"
:
"Radio Unit"
,
"oneOf"
:
[
{
"title"
:
"Shared Radio Unit"
,
"description"
:
"Use radio unit defined in separate shared instance"
,
"type"
:
"object"
,
"required"
:
[
"ru_type"
,
"ru_ref"
],
"properties"
:
{
"ru_type"
:
{
"const"
:
"ru_ref"
,
"template"
:
"ru_ref"
,
"options"
:
{
"hidden"
:
true
}
"ru"
:
{
"title"
:
"Radio Unit"
,
"oneOf"
:
[
{
"title"
:
"Shared Radio Unit"
,
"description"
:
"Use radio unit defined in separate shared instance"
,
"type"
:
"object"
,
"required"
:
[
"ru_type"
,
"ru_ref"
],
"properties"
:
{
"ru_type"
:
{
"const"
:
"ru_ref"
,
"template"
:
"ru_ref"
,
"options"
:
{
"hidden"
:
true
}
},
"ru_ref"
:
{
"title"
:
"RU Reference"
,
"description"
:
"Reference of shared radio unit instance"
,
"type"
:
"string"
}
}
},
"ru_ref"
:
{
"title"
:
"
RU Reference
"
,
"description"
:
"
Reference of shared radio unit instance
"
,
"type"
:
"
string"
}
}
},
{
"title"
:
"Shared Radio Unit of a Cell
"
,
"description"
:
"Use the same radio unit as referenced cell instance does"
,
"type"
:
"object"
,
"required"
:
[
"ru_type"
,
"ruincell_ref"
],
"properties"
:
{
"ru_type"
:
{
"const"
:
"ruincell_ref"
,
"template"
:
"ruincell_ref"
,
"options"
:
{
"hidden"
:
true
}
{
"title"
:
"
Shared Radio Unit of a Cell
"
,
"description"
:
"
Use the same radio unit as referenced cell instance does
"
,
"type"
:
"
object"
,
"required"
:
[
"ru_type"
,
"ruincell_ref"
],
"properties"
:
{
"ru_type"
:
{
"const"
:
"ruincell_ref"
,
"template"
:
"ruincell_ref
"
,
"options"
:
{
"hidden"
:
true
}
}
,
"ruincell_ref"
:
{
"title"
:
"Cell Reference"
,
"description"
:
"Reference of cell instance whose radio unit to share"
,
"type"
:
"string"
}
}
},
"ruincell_ref"
:
{
"title"
:
"Cell Reference"
,
"description"
:
"Reference of cell instance whose radio unit to share"
,
"type"
:
"string"
}
}
},
{
"$ref"
:
"ru/sdr/input-schema.json"
},
{
"$ref"
:
"ru/lopcomm/input-schema.json"
},
{
"$ref"
:
"ru/sunvawe/input-schema.json"
}
]
{
"$ref"
:
"../ru/sdr/input-schema.json"
},
{
"$ref"
:
"../ru/lopcomm/input-schema.json"
},
{
"$ref"
:
"../ru/sunvawe/input-schema.json"
}
],
"propertyOrder"
:
9999
}
}
}
}
}
software/ors-amarisoft/cell/lte/input-schema.json
0 → 100644
View file @
e8d8d7b3
{
"$schema"
:
"https://json-schema.org/draft/2020-12/schema"
,
"title"
:
"LTE Cell"
,
"type"
:
"object"
,
"$ref"
:
"../input-schema.json#/$defs/cell-common"
,
"required"
:
[
"bandwidth"
,
"dl_earfcn"
,
"tac"
],
"properties"
:
{
"cell_type"
:
{
"const"
:
"lte"
,
"template"
:
"lte"
},
"tdd_ul_dl_config"
:
{
"title"
:
"TDD Configuration"
,
"type"
:
"string"
,
"enum"
:
[
"[Configuration 2] 5ms 2UL 6DL (default)"
,
"[Configuration 6] 5ms 5UL 3DL (maximum uplink)"
],
"default"
:
"5ms 2UL 7DL 4/6 (default)"
,
"options"
:
{
"dependencies"
:
{
"rf_mode"
:
"tdd"
}
}
},
"bandwidth"
:
{
"title"
:
"Bandwidth"
,
"description"
:
"Downlink Bandwidth"
,
"type"
:
"string"
,
"enum"
:
[
"1.4 MHz"
,
"3 MHz"
,
"5 MHz"
,
"10 MHz"
,
"15 MHz"
,
"20 MHz"
]
},
"dl_earfcn"
:
{
"title"
:
"DL EARFCN"
,
"description"
:
"Downlink E-UTRA Absolute Radio Frequency Channel Number of the cell"
,
"type"
:
"integer"
},
"pci"
:
{
"default"
:
1
},
"tac"
:
{
"title"
:
"Tracking Area Code"
,
"description"
:
"Tracking Area Code in hexadecimal representation (range 0x0000 to 0xffff)"
,
"default"
:
"0x0001"
,
"type"
:
"string"
}
}
}
software/ors-amarisoft/cell/nr/input-schema.json
0 → 100644
View file @
e8d8d7b3
{
"$schema"
:
"https://json-schema.org/draft/2020-12/schema"
,
"title"
:
"NR Cell"
,
"type"
:
"object"
,
"$ref"
:
"../input-schema.json#/$defs/cell-common"
,
"required"
:
[
"bandwidth"
,
"dl_nr_arfcn"
],
"properties"
:
{
"cell_type"
:
{
"const"
:
"nr"
,
"template"
:
"nr"
},
"tdd_ul_dl_config"
:
{
"title"
:
"TDD Configuration"
,
"type"
:
"string"
,
"enum"
:
[
"5ms 2UL 7DL 4/6 (default)"
,
"2.5ms 1UL 3DL 2/10"
,
"5ms 8UL 3DL 2/10 (maximum uplink)"
],
"default"
:
"5ms 2UL 7DL 4/6 (default)"
,
"options"
:
{
"dependencies"
:
{
"rf_mode"
:
"tdd"
}
}
},
"bandwidth"
:
{
"title"
:
"Bandwidth"
,
"description"
:
"Downlink Bandwidth (in MHz)"
,
"type"
:
"number"
},
"dl_nr_arfcn"
:
{
"title"
:
"DL NR ARFCN"
,
"description"
:
"Downlink NR Absolute Radio Frequency Channel Number of the cell"
,
"type"
:
"integer"
},
"nr_band"
:
{
"title"
:
"NR band"
,
"description"
:
"NR band number"
,
"type"
:
"integer"
},
"ssb_pos_bitmap"
:
{
"title"
:
"SSB Position Bitmap"
,
"description"
:
"SSB position bitmap in bits (4, 8 or 64 bits depending on the DL frequency)."
,
"type"
:
"string"
,
"default"
:
"10000000"
},
"pci"
:
{
"default"
:
500
}
}
}
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