mirror of
https://github.com/thelsing/knx.git
synced 2025-08-26 13:51:28 +02:00
Fix issues
This commit is contained in:
parent
8a2121aac9
commit
b069b520ca
@ -201,7 +201,7 @@ void ApplicationLayer::dataSystemBroadcastIndication(HopCountType hopType, Prior
|
|||||||
print("SystemBroadcast-indication: unhandled APDU-Type: ");
|
print("SystemBroadcast-indication: unhandled APDU-Type: ");
|
||||||
println(apdu.type());
|
println(apdu.type());
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void ApplicationLayer::dataSystemBroadcastConfirm(HopCountType hopType, Priority priority, APDU& apdu, bool status)
|
void ApplicationLayer::dataSystemBroadcastConfirm(HopCountType hopType, Priority priority, APDU& apdu, bool status)
|
||||||
@ -228,20 +228,20 @@ void ApplicationLayer::dataSystemBroadcastConfirm(HopCountType hopType, Priority
|
|||||||
{
|
{
|
||||||
const uint8_t* knxSerialNumber = &data[1];
|
const uint8_t* knxSerialNumber = &data[1];
|
||||||
const uint8_t* domainAddress = &data[7];
|
const uint8_t* domainAddress = &data[7];
|
||||||
_bau.domainAddressSerialNumberWriteIndication(priority, hopType, domainAddress, knxSerialNumber);
|
_bau.domainAddressSerialNumberWriteLocalConfirm(priority, hopType, domainAddress, knxSerialNumber, status);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case DomainAddressSerialNumberRead:
|
case DomainAddressSerialNumberRead:
|
||||||
{
|
{
|
||||||
const uint8_t* knxSerialNumber = &data[1];
|
const uint8_t* knxSerialNumber = &data[1];
|
||||||
_bau.domainAddressSerialNumberReadIndication(priority, hopType, knxSerialNumber);
|
_bau.domainAddressSerialNumberReadLocalConfirm(priority, hopType, knxSerialNumber, status);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
print("SystemBroadcast-confirm: unhandled APDU-Type: ");
|
print("SystemBroadcast-confirm: unhandled APDU-Type: ");
|
||||||
println(apdu.type());
|
println(apdu.type());
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void ApplicationLayer::dataIndividualIndication(HopCountType hopType, Priority priority, uint16_t tsap, APDU& apdu)
|
void ApplicationLayer::dataIndividualIndication(HopCountType hopType, Priority priority, uint16_t tsap, APDU& apdu)
|
||||||
|
Loading…
Reference in New Issue
Block a user