diff --git a/association_table_object.cpp b/association_table_object.cpp index 3008cab..e575377 100644 --- a/association_table_object.cpp +++ b/association_table_object.cpp @@ -68,7 +68,10 @@ void AssociationTableObject::beforeStateChange(LoadState& newState) _tableData = (uint16_t*)_data; } -static PropertyDescription _propertyDescriptions[] = { }; +static PropertyDescription _propertyDescriptions[] = +{ + { PID_TABLE, false, PDT_GENERIC_02, 254, ReadLv3 | WriteLv0 }, +}; static uint8_t _propertyCount = sizeof(_propertyDescriptions) / sizeof(PropertyDescription); uint8_t AssociationTableObject::propertyCount() diff --git a/property_types.h b/property_types.h index 3945828..8743dce 100644 --- a/property_types.h +++ b/property_types.h @@ -80,6 +80,7 @@ enum PropertyID PID_ORDER_INFO = 15, PID_PEI_TYPE = 16, PID_PORT_CONFIGURATION = 17, + PID_TABLE = 23, PID_VERSION = 25, PID_MCB_TABLE = 27, PID_ERROR_CODE = 28,