From 061c462ee0a5ed42cbe47d2657dc4655bb436d76 Mon Sep 17 00:00:00 2001 From: Marcin Gibula Date: Thu, 8 Jun 2017 23:18:40 +0200 Subject: [PATCH] Set correct message length --- src/confirmselectframe.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/confirmselectframe.h b/src/confirmselectframe.h index 8a9f79d..26ef3ba 100644 --- a/src/confirmselectframe.h +++ b/src/confirmselectframe.h @@ -53,7 +53,7 @@ public: * @return newly created confirm select frame */ ConfirmSelectFrame(uint16_t channel, bool noWait = false) : - ConfirmFrame(channel, 0), + ConfirmFrame(channel, 1), //sizeof bool _noWait(noWait) {}