Skip to content

Commit

Permalink
fix merge
Browse files Browse the repository at this point in the history
  • Loading branch information
thelsing committed Feb 23, 2025
1 parent 088dd65 commit 0f02f1d
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions src/knx/tpuart_data_link_layer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -667,15 +667,6 @@ void TpUartDataLinkLayer::requestConfig()
_platform.writeUart(0xFF); // Dummy Byte needed by NCN only
#endif

// Set Address for AutoACK Unicast
const uint16_t address = _deviceObject.individualAddress();
_platform.writeUart(U_SET_ADDRESS_REQ);
_platform.writeUart((address >> 8) & 0xFF);
_platform.writeUart(address & 0xFF);
#ifdef NCN5120
_platform.writeUart(0xFF); // Dummy Byte needed by NCN only
#endif

// Deviating Config
if (_repetitions != 0b00110011)
{
Expand Down

0 comments on commit 0f02f1d

Please sign in to comment.