Skip to content

Commit

Permalink
expand cellular_status msg
Browse files Browse the repository at this point in the history
  • Loading branch information
asimopunov authored and potaito committed Jan 25, 2023
1 parent a870eba commit 5327690
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
8 changes: 8 additions & 0 deletions protos/telemetry/telemetry.proto
Original file line number Diff line number Diff line change
Expand Up @@ -671,6 +671,14 @@ message CellularStatus {
uint32 mcc = 6; // (actually uint16_t)
uint32 mnc = 7; // (actually uint16_t)
uint32 lac = 8; // (actually uint16_t)
uint32 slot_number = 9; //(actually uint8_t)
uint32 rx_level = 10; //(actually uint8_t)
uint32 signal_to_noise = 11; //(actually uint8_t)
uint32 band_number = 12; //(actually uint8_t)
uint32 arfcn = 13;
uint32 cell_id = 14; // char[9]
float download_rate = 15;
float upload_rate = 16;
}

// Status types.
Expand Down
8 changes: 8 additions & 0 deletions protos/telemetry_server/telemetry_server.proto
Original file line number Diff line number Diff line change
Expand Up @@ -313,6 +313,14 @@ message CellularStatus {
uint32 mcc = 6; // (actually uint16_t)
uint32 mnc = 7; // (actually uint16_t)
uint32 lac = 8; // (actually uint16_t)
uint32 slot_number = 9; //(actually uint8_t)
uint32 rx_level = 10; //(actually uint8_t)
uint32 signal_to_noise = 11; //(actually uint8_t)
uint32 band_number = 12; //(actually uint8_t)
uint32 arfcn = 13;
uint32 cell_id = 14; // char[9]
float download_rate = 15;
float upload_rate = 16;
}

// Status types.
Expand Down

0 comments on commit 5327690

Please sign in to comment.