Skip to content

Commit

Permalink
Adds the nonTerrestrialNetwork field to the PhoneState message (satel…
Browse files Browse the repository at this point in the history
…lite usage)
  • Loading branch information
christianrowlands committed Oct 7, 2024
1 parent 9d3c30f commit b5b85f2
Show file tree
Hide file tree
Showing 3 changed files with 127 additions and 249 deletions.
6 changes: 5 additions & 1 deletion src/main/asyncapi/network_survey_messaging.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1699,6 +1699,10 @@ components:
type: array
items:
$ref: '#/components/schemas/networkRegistrationInfo'
nonTerrestrialNetwork:
type: boolean
description: >-
Indicates if the device is currently using a non-terrestrial network (e.g. satellite). Added in version 1.6.0.
wcdmaRrcPayload:
type: object
required:
Expand Down Expand Up @@ -2900,7 +2904,7 @@ components:
format: int32
minimum: 0
description: >-
If the UE tried to register with this network and was denied, this value indicates the rejection reason. The values are defined in 3GPP TS 24.008 version 16.7.0 page 536 (Reject cause), and 3GPP TS 24.301 version 16.8.0 page 418 (EMM cause).
If the UE tried to register with this network and was denied, this value indicates the rejection reason. The values are defined in 3GPP TS 24.008 version 16.7.0 page 536 (Reject cause) for UMTS, 3GPP TS 24.301 version 16.8.0 page 418 (EMM cause) for LTE, and 3GPP 24.501 Annex A for NR/5GS.
cellIdentityXXX:
description: >-
The properties defining the cell. The properties are different for each technology so the object type will be different depending on the accessNetworkTechnology. The name of this field will be different for each object. For example, it will be `cellIdentityLte` for LTE and `cellIdentityNr` for NR.
Expand Down
1 change: 1 addition & 0 deletions src/main/proto/com/craxiom/messaging/phone_state.proto
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ message PhoneStateData {
repeated NetworkRegistrationInfo networkRegistrationInfo = 11;
int32 accuracy = 12;
google.protobuf.Int32Value slot = 13;
google.protobuf.BoolValue nonTerrestrialNetwork = 14;
}

// Used to report the details of a registered network
Expand Down
Loading

0 comments on commit b5b85f2

Please sign in to comment.