We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f606f6d commit 8f35b4cCopy full SHA for 8f35b4c
src/knx/tpuart_data_link_layer.cpp
@@ -649,6 +649,15 @@ void TpUartDataLinkLayer::requestConfig()
649
_platform.writeUart(U_CONFIGURE_REQ | U_CONFIGURE_MARKER_REQ);
650
#endif
651
652
+ // Set Address for AutoACK Unicast
653
+ const uint16_t address = _deviceObject.individualAddress();
654
+ _platform.writeUart(U_SET_ADDRESS_REQ);
655
+ _platform.writeUart((address >> 8) & 0xFF);
656
+ _platform.writeUart(address & 0xFF);
657
+#ifdef NCN5120
658
+ _platform.writeUart(0xFF); // Dummy Byte needed by NCN only
659
+#endif
660
+
661
// Abweichende Config
662
if (_repetitions != 0b00110011)
663
{
0 commit comments