From 5b1edc6534d5691a045290e4a336dce7f887c8a0 Mon Sep 17 00:00:00 2001 From: Moritz Barsnick Date: Thu, 8 Feb 2024 15:38:29 +0100 Subject: [PATCH] DCSupplySimulator: remove two now obsolete members Forgotten in previous commit. Signed-off-by: Moritz Barsnick --- .../simulation/DCSupplySimulator/main/power_supply_DCImpl.hpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/modules/simulation/DCSupplySimulator/main/power_supply_DCImpl.hpp b/modules/simulation/DCSupplySimulator/main/power_supply_DCImpl.hpp index 35eea8bd8..2a3dfc30f 100644 --- a/modules/simulation/DCSupplySimulator/main/power_supply_DCImpl.hpp +++ b/modules/simulation/DCSupplySimulator/main/power_supply_DCImpl.hpp @@ -67,14 +67,12 @@ class power_supply_DCImpl : public power_supply_DCImplBase { types::power_supply_DC::Mode mode; double connector_voltage; double connector_current; - types::power_supply_DC::Capabilities capabilities; std::mutex power_supply_values_mutex; Everest::Thread power_supply_thread_handle; void power_supply_worker(void); static constexpr int LOOP_SLEEP_MS{500}; void clampVoltageCurrent(double& voltage, double& current); - void init_capabilities(void); // ev@3370e4dd-95f4-47a9-aaec-ea76f34a66c9:v1 };