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