-
Notifications
You must be signed in to change notification settings - Fork 90
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 #63 from ethz-asl/feature/v2.1.14
Feature/v2.1.14
- Loading branch information
Showing
17 changed files
with
490 additions
and
77 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
Binary file not shown.
Binary file not shown.
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
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,23 @@ | ||
# The tracking message returns a variable-length array of tracking channel states. It reports status and | ||
# carrier-to-noise density measurements for all tracked satellites. | ||
|
||
# Message definition based on libsbp v2.4.1 | ||
|
||
Header header | ||
|
||
uint8[] sat # Constellation-specific satellite identifier. | ||
uint8[] code # Signal constellation, band and code. | ||
uint8[] cn0 # Carrier-to-Noise density. Zero implies invalid cn0 [dB Hz / 4]. | ||
|
||
|
||
uint8 CODE_GPS_L1CA = 0 | ||
uint8 CODE_GPS_L2CM = 1 | ||
uint8 CODE_SBAS_L1CA = 2 | ||
uint8 CODE_GLO_L1CA = 3 | ||
uint8 CODE_GLO_L2CA = 4 | ||
uint8 CODE_GPS_L1P = 5 | ||
uint8 CODE_GPS_L2P = 6 | ||
uint8 CODE_BDS2_B1 = 12 | ||
uint8 CODE_BDS2_B2 = 13 | ||
uint8 CODE_GAL_E1B = 14 | ||
uint8 CODE_GAL_E7I = 20 |
Oops, something went wrong.