Skip to content

Commit

Permalink
change cell id to string
Browse files Browse the repository at this point in the history
  • Loading branch information
asimopunov committed Jan 18, 2023
1 parent 4ba5275 commit 16b5579
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion protos/telemetry/telemetry.proto
Original file line number Diff line number Diff line change
Expand Up @@ -673,7 +673,7 @@ message CellularStatus {
uint32 signal_to_noise = 11; //(actually uint8_t)
uint32 band_number = 12; //(actually uint8_t)
uint32 arfcn = 13;
uint32 cell_id = 14; // char[9]
string cell_id = 14; // char[9]
float download_rate = 15;
float upload_rate = 16;
}
Expand Down
2 changes: 1 addition & 1 deletion protos/telemetry_server/telemetry_server.proto
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ message CellularStatus {
uint32 signal_to_noise = 11; //(actually uint8_t)
uint32 band_number = 12; //(actually uint8_t)
uint32 arfcn = 13;
uint32 cell_id = 14; // char[9]
string cell_id = 14; // char[9]
float download_rate = 15;
float upload_rate = 16;
}
Expand Down

0 comments on commit 16b5579

Please sign in to comment.