From 4d1745cc5537c7533fc9752baf757d7e9fe47bc1 Mon Sep 17 00:00:00 2001 From: Maggyver <46162338+Maggyver@users.noreply.github.com> Date: Wed, 15 May 2019 21:20:44 +0200 Subject: [PATCH] Update address_table_object.h --- src/knx/address_table_object.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/knx/address_table_object.h b/src/knx/address_table_object.h index 98efed5..0d2ef03 100644 --- a/src/knx/address_table_object.h +++ b/src/knx/address_table_object.h @@ -6,7 +6,7 @@ class AddressTableObject: public TableObject { public: AddressTableObject(Platform& platform); - void readProperty(PropertyID id, uint32_t start, uint32_t count, uint8_t *data); + void readProperty(PropertyID id, uint32_t start, uint32_t& count, uint8_t *data); uint16_t entryCount(); uint16_t getGa(uint16_t tsap); uint16_t getTsap(uint16_t ga); @@ -19,4 +19,4 @@ protected: PropertyDescription* propertyDescriptions(); private: uint16_t* _groupAddresses; -}; \ No newline at end of file +};