mirror of
https://github.com/thelsing/knx.git
synced 2025-08-03 13:48:15 +02:00
Merge branch 'v1' into v1dev
This commit is contained in:
commit
096f316447
@ -30,7 +30,10 @@ See the examples for basic usage options
|
|||||||
- increase device object api version to 2 (invalidation of knx flash data stored by older versions)
|
- increase device object api version to 2 (invalidation of knx flash data stored by older versions)
|
||||||
- add #pragma once to Arduino plattform to allow derived plattforms
|
- add #pragma once to Arduino plattform to allow derived plattforms
|
||||||
- change esp32 plattform to use KNX_NETIF
|
- change esp32 plattform to use KNX_NETIF
|
||||||
- fix out-of-boundary write and dereferenced nullpointer access in tunneling support
|
- fix out-of-boundary write and dereferenced nullpointer access in tunneling support
|
||||||
|
|
||||||
|
### V2.1.2 - 2024-12-09
|
||||||
|
- adds unicast auto ack
|
||||||
|
|
||||||
### V2.1.1 - 2024-09-16
|
### V2.1.1 - 2024-09-16
|
||||||
- fix minor bug in TP-Uart Driver (RX queue out of boundary)
|
- fix minor bug in TP-Uart Driver (RX queue out of boundary)
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "knx",
|
"name": "knx",
|
||||||
"version": "2.1.1",
|
"version": "2.1.2",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
},
|
},
|
||||||
"description": "knx stack",
|
"description": "knx stack",
|
||||||
|
@ -650,6 +650,15 @@ void TpUartDataLinkLayer::requestConfig()
|
|||||||
_platform.writeUart(U_CONFIGURE_REQ | U_CONFIGURE_MARKER_REQ);
|
_platform.writeUart(U_CONFIGURE_REQ | U_CONFIGURE_MARKER_REQ);
|
||||||
#endif
|
#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
|
||||||
|
|
||||||
// Abweichende Config
|
// Abweichende Config
|
||||||
if (_repetitions != 0b00110011)
|
if (_repetitions != 0b00110011)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user