From 36b3fdebd39b94201e90ceffa6382da72c531ed2 Mon Sep 17 00:00:00 2001 From: 0xCAFEDECAF <31759302+0xCAFEDECAF@users.noreply.github.com> Date: Wed, 20 Oct 2021 11:12:34 +0200 Subject: [PATCH] Prepare for release 0.2.3 --- CHANGES.txt | 8 ++++++++ VanBusRx.h | 4 ++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index bcc9276..b3d9c54 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,11 @@ +0.2.3 + General: + * Compiles also for ESP32 architecture (but not tested!) + LiveWebPage.ino: + * Improved compile-time options in Config.h + * Detecting and handling of button delay and repeat when held-down on IR remote control + * Various optimizations and improvements in packet parsing and handling (PacketToJson.ino) + 0.2.2 VanBusRx.cpp: * Added methods TVanPacketRxQueue::Disable() and TVanPacketRxQueue::Enable(), to be used when other diff --git a/VanBusRx.h b/VanBusRx.h index a1f0a7d..376b405 100644 --- a/VanBusRx.h +++ b/VanBusRx.h @@ -186,8 +186,8 @@ class TVanPacketRxDesc { size = 0; state = VAN_RX_VACANT; - result = VAN_RX_PACKET_OK; // TODO - not necessary - ack = VAN_NO_ACK; // TODO - not necessary + result = VAN_RX_PACKET_OK; + ack = VAN_NO_ACK; #ifdef VAN_RX_ISR_DEBUGGING isrDebugPacket.Init(); #endif // VAN_RX_ISR_DEBUGGING