From 55cbbbe84cd88c410292f9e3ae4a1a22e579a0a3 Mon Sep 17 00:00:00 2001 From: Adam Shapiro Date: Tue, 28 Jul 2026 11:18:18 -0400 Subject: [PATCH 1/2] Formatting cleanup. --- python/fusion_engine_client/messages/device.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/python/fusion_engine_client/messages/device.py b/python/fusion_engine_client/messages/device.py index cfeae5fd..80312573 100644 --- a/python/fusion_engine_client/messages/device.py +++ b/python/fusion_engine_client/messages/device.py @@ -74,9 +74,9 @@ class DeviceType(IntEnum): LG69T_AM = 2 LG69T_AP = 3 LG69T_AH = 4 - NEXAR_BEAM2K = 5, - SSR_LG69T = 6, - SSR_DESKTOP = 7, + NEXAR_BEAM2K = 5 + SSR_LG69T = 6 + SSR_DESKTOP = 7 class DeviceIDMessage(MessagePayload): From bb195053a7a4621be8fea69e9b7d97265e13f618 Mon Sep 17 00:00:00 2001 From: Adam Shapiro Date: Tue, 28 Jul 2026 11:18:27 -0400 Subject: [PATCH 2/2] Added Atlas R2 device type enum. --- python/fusion_engine_client/messages/device.py | 1 + src/point_one/fusion_engine/messages/device.h | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/python/fusion_engine_client/messages/device.py b/python/fusion_engine_client/messages/device.py index 80312573..3789bbcb 100644 --- a/python/fusion_engine_client/messages/device.py +++ b/python/fusion_engine_client/messages/device.py @@ -77,6 +77,7 @@ class DeviceType(IntEnum): NEXAR_BEAM2K = 5 SSR_LG69T = 6 SSR_DESKTOP = 7 + ATLAS_R2 = 9 class DeviceIDMessage(MessagePayload): diff --git a/src/point_one/fusion_engine/messages/device.h b/src/point_one/fusion_engine/messages/device.h index 9f7479ff..69c3ae6d 100644 --- a/src/point_one/fusion_engine/messages/device.h +++ b/src/point_one/fusion_engine/messages/device.h @@ -103,6 +103,8 @@ enum class DeviceType : uint8_t { SSR_LG69T = 6, /** Point One SSR client running on a desktop platform. */ SSR_DESKTOP = 7, + /** Point One Atlas R2. */ + ATLAS_R2 = 9, }; /** @@ -131,6 +133,8 @@ P1_CONSTEXPR_FUNC const char* to_string(DeviceType val) { return "SSR_LG69T"; case DeviceType::SSR_DESKTOP: return "SSR_DESKTOP"; + case DeviceType::ATLAS_R2: + return "ATLAS_R2"; } return "Unrecognized"; }