Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Data Only device type #420

Merged
merged 3 commits into from
Oct 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/service/mobile_config.proto
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@ enum device_type {
cbrs = 0;
wifi_indoor = 1;
wifi_outdoor = 2;
wifi_data_only = 3;
}

message authorization_verify_req_v1 {
Expand Down
4 changes: 4 additions & 0 deletions src/service/poc_mobile.proto
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ message speedtest_ingest_report_v1 {
enum speedtest_verification_result {
speedtest_valid = 0;
speedtest_gateway_not_found = 1;
// Device Type not expected to submit speedtests
speedtest_invalid_device_type = 2;
}

message verified_speedtest {
Expand Down Expand Up @@ -411,6 +413,8 @@ enum heartbeat_validity {
heartbeat_validity_gateway_not_asserted = 10;
// heartbeat location is outside supported locations
heartbeat_validity_unsupported_location = 11;
// Device Type not expected to submit heartbeats
heartbeat_validity_invalid_device_type = 12;
}

message seniority_update {
Expand Down
Loading