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 authored and potaito committed Jan 25, 2023
1 parent 5327690 commit 5be6911
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 @@ -676,7 +676,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 5be6911

Please sign in to comment.