From 3fb3039be530acdc21f41ca09dc7fc9d276827dc Mon Sep 17 00:00:00 2001 From: "Robin.Mueller" Date: Tue, 1 Dec 2020 18:16:26 +0100 Subject: [PATCH] minus 1 replacement --- devicehandlers/DeviceHandlerIF.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devicehandlers/DeviceHandlerIF.h b/devicehandlers/DeviceHandlerIF.h index f64e1589c..f09ddbb82 100644 --- a/devicehandlers/DeviceHandlerIF.h +++ b/devicehandlers/DeviceHandlerIF.h @@ -21,7 +21,7 @@ using DeviceCommandId_t = uint32_t; */ class DeviceHandlerIF { public: - static const DeviceCommandId_t NO_COMMAND = 0xffffffff; + static const DeviceCommandId_t NO_COMMAND = -1; static const uint8_t TRANSITION_MODE_CHILD_ACTION_MASK = 0x20; static const uint8_t TRANSITION_MODE_BASE_ACTION_MASK = 0x10;