Skip to content

Commit

Permalink
Merge pull request #420 from helium/mj/do-device-type
Browse files Browse the repository at this point in the history
Add Data Only device type
  • Loading branch information
michaeldjeffrey authored Oct 2, 2024
2 parents 9d1785d + 6d7721c commit 197ff9c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
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

0 comments on commit 197ff9c

Please sign in to comment.