Skip to content
Snippets Groups Projects
Commit 9d263755 authored by Robert Schmidt's avatar Robert Schmidt
Browse files

Add BS capability protobuf message in FlexRAN

parent 5e1f3441
No related branches found
No related tags found
No related merge requests found
...@@ -65,9 +65,21 @@ enum flexran_err { ...@@ -65,9 +65,21 @@ enum flexran_err {
// //
// Maintenance and discovery messages // Maintenance and discovery messages
// //
enum flex_bs_capability {
LOPHY = 0;
HIPHY = 1;
LOMAC = 2;
HIMAC = 3;
RLC = 4;
PDCP = 5;
SDAP = 6;
RRC = 7;
}
message flex_hello { message flex_hello {
optional flex_header header = 1; optional flex_header header = 1;
optional uint64 bs_id = 2; // Unique id to distinguish the eNB
repeated flex_bs_capability capabilities = 3;
} }
message flex_echo_request { message flex_echo_request {
...@@ -132,7 +144,6 @@ message flex_enb_config_request { ...@@ -132,7 +144,6 @@ message flex_enb_config_request {
message flex_enb_config_reply { message flex_enb_config_reply {
optional flex_header header = 1; optional flex_header header = 1;
optional uint64 eNB_id = 2; // Unique id to distinguish the eNB
repeated flex_cell_config cell_config = 3; repeated flex_cell_config cell_config = 3;
optional uint32 device_spec = 4; optional uint32 device_spec = 4;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment