-
Notifications
You must be signed in to change notification settings - Fork 13.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #143 from Auterion/pr-log-cellular-status
Add cellular status message handler and logging
- Loading branch information
Showing
6 changed files
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
uint64 timestamp # time since system start (microseconds) | ||
|
||
uint16 status # Status bitmap 1: Roaming is active | ||
uint8 type # Cellular network radio type 0: none 1: gsm 2: cdma 3: wcdma 4: lte | ||
uint8 quality # Cellular network RSSI/RSRP in dBm, absolute value | ||
uint16 mcc # Mobile country code. If unknown, set to: UINT16_MAX | ||
uint16 mnc # Mobile network code. If unknown, set to: UINT16_MAX | ||
uint16 lac # Location area code. If unknown, set to: 0 | ||
uint32 cid # Cell ID. If unknown, set to: UINT32_MAX |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters