We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent feb50d6 commit 6472368Copy full SHA for 6472368
arduino-altherma-controller/03-P1P2.ino
@@ -218,7 +218,9 @@ void processWrite(uint16_t n) {
218
case PACKET_TYPE_HANDSHAKE: // 0x30
219
{
220
d = F030DELAY;
221
- for (byte i = 3; i < n; i++) WB[i] = 0x00;
+ WB[3] = RB[3]; // trigger packet 0x31 if indicated in 00Fx30 request
222
+ WB[4] = RB[4]; // trigger packet 0x32 if indicated in 00Fx30 request
223
+ for (byte i = 5; i < n; i++) WB[i] = 0x00; // default response for the rest of the packet
224
// 00F030 request message received, we will:
225
// - reply with 40F030 response
226
// - hijack every 2nd time slot to send request counters
0 commit comments