Skip to content

Commit

Permalink
Prepare for release 0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
0xCAFEDECAF committed Oct 20, 2021
1 parent 4a71cc1 commit 36b3fde
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions VanBusRx.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 36b3fde

Please sign in to comment.