From 15413767019151c0b9bb6745aff4902694e72e34 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Thu, 30 Mar 2023 13:41:14 +0200 Subject: [PATCH] minor tweak for device handler --- mission/payload/ScexDeviceHandler.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/mission/payload/ScexDeviceHandler.h b/mission/payload/ScexDeviceHandler.h index 8a8dcbd2..f95169b9 100644 --- a/mission/payload/ScexDeviceHandler.h +++ b/mission/payload/ScexDeviceHandler.h @@ -13,13 +13,13 @@ class SdCardMountedIF; class ScexDeviceHandler : public DeviceHandlerBase { public: - static constexpr char *FRAM_BASE_NAME = "framContent"; - static constexpr char *ION_BASE_NAME = "ion"; - static constexpr char *TEMPERATURE_BASE_NAME = "temperature"; - static constexpr char *EXP_STATUS_BASE_NAME = "expStatus"; - static constexpr char *ONE_CELL_BASE_NAME = "oneCell"; - static constexpr char *ALL_CELLS_BASE_NAME = "allCells"; - static constexpr char *PING_IDLE_BASE_NAME = "pingIdle"; + static constexpr char FRAM_BASE_NAME[] = "framContent"; + static constexpr char ION_BASE_NAME[] = "ion"; + static constexpr char TEMPERATURE_BASE_NAME[] = "temperature"; + static constexpr char EXP_STATUS_BASE_NAME[] = "expStatus"; + static constexpr char ONE_CELL_BASE_NAME[] = "oneCell"; + static constexpr char ALL_CELLS_BASE_NAME[] = "allCells"; + static constexpr char PING_IDLE_BASE_NAME[] = "pingIdle"; ScexDeviceHandler(object_id_t objectId, ScexUartReader &reader, CookieIF *cookie, SdCardMountedIF &sdcMan);