From e50aa2b6209a84eadb414d1febbe2649c7469413 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Wed, 19 Jul 2023 14:01:08 +0200 Subject: [PATCH 1/2] small fix for PL PCDU --- dummies/PlPcduDummy.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dummies/PlPcduDummy.cpp b/dummies/PlPcduDummy.cpp index 6bfc271f..7dfa4464 100644 --- a/dummies/PlPcduDummy.cpp +++ b/dummies/PlPcduDummy.cpp @@ -7,7 +7,7 @@ PlPcduDummy::PlPcduDummy(object_id_t objectId, object_id_t comif, CookieIF *comC PlPcduDummy::~PlPcduDummy() {} -void PlPcduDummy::doStartUp() { setMode(MODE_NORMAL); } +void PlPcduDummy::doStartUp() { setMode(MODE_ON); } void PlPcduDummy::doShutDown() { setMode(MODE_OFF); } From f61301db1369599149b1e37e9d0a7af192888c9e Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Wed, 19 Jul 2023 15:34:16 +0200 Subject: [PATCH 2/2] changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a5e65685..e71966b0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -34,6 +34,7 @@ will consitute of a breaking change warranting a new major release: ## Fixed - SUS dummy handler went to `MODE_NORMAL` for ON commands. +- PL PCDU dummy went to `MODE_NORMAL` for ON commands. # [v6.1.0] 2023-07-13