mirror of
https://github.com/thelsing/knx.git
synced 2025-10-02 17:52:04 +02:00
fixed typo: individualAddressDuplication
This commit is contained in:
parent
455514b6ad
commit
66d862f599
@ -103,7 +103,7 @@ void DataLinkLayer::frameReceived(CemiFrame& frame)
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (source == ownAddr)
|
if (source == ownAddr)
|
||||||
_deviceObject.induvidualAddressDuplication(true);
|
_deviceObject.individualAddressDuplication(true);
|
||||||
|
|
||||||
if (addrType == GroupAddress && destination == 0)
|
if (addrType == GroupAddress && destination == 0)
|
||||||
{
|
{
|
||||||
|
@ -129,7 +129,7 @@ void DeviceObject::induvidualAddress(uint16_t value)
|
|||||||
#define SAFE_STATE 0x8
|
#define SAFE_STATE 0x8
|
||||||
|
|
||||||
|
|
||||||
void DeviceObject::induvidualAddressDuplication(bool value)
|
void DeviceObject::individualAddressDuplication(bool value)
|
||||||
{
|
{
|
||||||
Property* prop = property(PID_DEVICE_CONTROL);
|
Property* prop = property(PID_DEVICE_CONTROL);
|
||||||
uint8_t data;
|
uint8_t data;
|
||||||
|
@ -15,7 +15,7 @@ public:
|
|||||||
uint16_t induvidualAddress();
|
uint16_t induvidualAddress();
|
||||||
void induvidualAddress(uint16_t value);
|
void induvidualAddress(uint16_t value);
|
||||||
|
|
||||||
void induvidualAddressDuplication(bool value);
|
void individualAddressDuplication(bool value);
|
||||||
bool verifyMode();
|
bool verifyMode();
|
||||||
void verifyMode(bool value);
|
void verifyMode(bool value);
|
||||||
bool progMode();
|
bool progMode();
|
||||||
|
Loading…
Reference in New Issue
Block a user