Skip to content
Merged
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
22 changes: 15 additions & 7 deletions src/rtcm3.c
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,15 @@ const char *msm_sig_gps[32] = {
};
const char *msm_sig_glo[32] = {
/* GLONASS: ref [17] table 3.5-96 */
"", "1C", "1P", "", "", "", "", "2C", "2P", "4A", "4X", "6A", // 1-12
"6B", "6X", "3I", "3Q", "3X", "", "", "", "", "", "", "", // 13-24
"", "", "", "", "", "", "", ""}; // 25-32
#if 1 // Compatible with BNC, TODO resolve this difference
"", "1C", "1P", "", "", "", "", "2C", "2P", "4A", "4B", "4X", // 1-12
"6A", "6B", "6X", "3I", "3Q", "3X", "", "", "", "", "", "", // 13-24
"", "", "", "", "", "", "", ""}; // 25-32
#else // From PocketSDR
"", "1C", "1P", "", "", "", "", "2C", "2P", "", "", "", // 1-12
"", "3I", "3Q", "3X", "", "4A", "4B", "4X", "", "6A", "6B", "6X", // 13-24
"", "", "", "", "", "", "", ""}; // 25-32
#endif
const char *msm_sig_gal[32] = {
/* Galileo: ref [17] table 3.5-99 */
"", "1C", "1A", "1B", "1X", "1Z", "", "6C", "6A", "6B", "6X", "6Z", // 1-12
Expand All @@ -108,14 +114,16 @@ const char *msm_sig_sbs[32] = {
"", "", "", "", "", "", "", ""}; // 25-32
const char *msm_sig_cmp[32] = {
/* BeiDou: ref [17] table 3.5-108 */
// 7P and 7Z are from the PocketSDR extensions
"", "2I", "2Q", "2X", "", "", "", "6I", "6Q", "6X", "", "", // 1-12
"", "7I", "7Q", "7X", "", "", "", "", "", "5D", "5P", "5X", // 13-24
"7D", "", "", "", "", "1D", "1P", "1X"}; // 25-32
"7D", "7P", "7Z", "", "", "1D", "1P", "1X"}; // 25-32
const char *msm_sig_irn[32] = {
/* NavIC/IRNSS: ref [17] table 3.5-108.3 */
"", "", "", "", "", "", "", "9A", "", "", "", "", // 1-12
"", "", "", "", "", "", "", "", "", "5A", "", "", // 13-24
"", "", "", "", "", "", "", ""}; // 25-32
// 1D, 1P, 1X, 9B, 9C, 9X, 5B, 5C, and 5X are from the PocketSDR extensions
"", "1D", "1P", "1X", "", "", "", "9A", "9B", "9C", "9X", "", // 1-12
"", "", "", "", "", "", "", "", "", "5A", "5B", "5C", // 13-24
"5X", "", "", "", "", "", "", ""}; // 25-32
/* SSR signal and tracking mode IDs ------------------------------------------*/
const uint8_t ssr_sig_gps[32]={
CODE_L1C,CODE_L1P,CODE_L1W,CODE_L1S,CODE_L1L,CODE_L2C,CODE_L2D,CODE_L2S,
Expand Down