From af6d18d60b323ea2759e1ca5af5980bd25673015 Mon Sep 17 00:00:00 2001 From: "Robin.Mueller" Date: Fri, 20 Mar 2020 22:47:07 +0100 Subject: [PATCH] added additional parameter form open/reopen call --- devicehandlers/DeviceCommunicationIF.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/devicehandlers/DeviceCommunicationIF.h b/devicehandlers/DeviceCommunicationIF.h index 9b0e0a3a..4f98dd6d 100644 --- a/devicehandlers/DeviceCommunicationIF.h +++ b/devicehandlers/DeviceCommunicationIF.h @@ -54,7 +54,7 @@ public: * @return */ virtual ReturnValue_t open(Cookie **cookie, address_t address, - uint32_t maxReplyLen) = 0; + uint32_t maxReplyLen, uint32_t comParameter = 0) = 0; /** * Use an existing cookie to open a connection to a new DeviceCommunication. @@ -68,7 +68,7 @@ public: * previous connection */ virtual ReturnValue_t reOpen(Cookie *cookie, address_t address, - uint32_t maxReplyLen) = 0; + uint32_t maxReplyLen, uint32_t comParameter = 0) = 0; /** * Closing call of connection. Don't forget to free memory of cookie.