From fea06c9108b57ed124f52b7b26913f71fb3f1c4f Mon Sep 17 00:00:00 2001 From: Karen Leineweber Date: Wed, 20 Dec 2023 12:44:46 -0800 Subject: [PATCH] Add SBAS option to iono model config --- python/fusion_engine_client/messages/configuration.py | 1 + src/point_one/fusion_engine/messages/configuration.h | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/python/fusion_engine_client/messages/configuration.py b/python/fusion_engine_client/messages/configuration.py index ee61f754..931d99a7 100644 --- a/python/fusion_engine_client/messages/configuration.py +++ b/python/fusion_engine_client/messages/configuration.py @@ -223,6 +223,7 @@ class IonoDelayModel(IntEnum): AUTO = 0 OFF = 1 KLOBUCHAR = 2 + SBAS = 3 class TropoDelayModel(IntEnum): diff --git a/src/point_one/fusion_engine/messages/configuration.h b/src/point_one/fusion_engine/messages/configuration.h index fbfc6013..e85b69e9 100644 --- a/src/point_one/fusion_engine/messages/configuration.h +++ b/src/point_one/fusion_engine/messages/configuration.h @@ -1350,6 +1350,8 @@ enum class IonoDelayModel : uint8_t { OFF = 1, /** Use the Klobuchar ionospheric model. */ KLOBUCHAR = 2, + /** Use the SBAS ionospheric model. */ + SBAS = 3, }; P1_CONSTEXPR_FUNC const char* to_string(IonoDelayModel iono_delay_model) { @@ -1360,6 +1362,8 @@ P1_CONSTEXPR_FUNC const char* to_string(IonoDelayModel iono_delay_model) { return "OFF"; case IonoDelayModel::KLOBUCHAR: return "KLOBUCHAR"; + case IonoDelayModel::SBAS: + return "SBAS"; default: return "UNRECOGNIZED"; }