some documentation, question about HasParametersIF,

variable in ParameterHelper intialized (compiler warning)
This commit is contained in:
2019-12-05 12:21:06 +01:00
parent 9c3a9323b7
commit 950a48078c
4 changed files with 21 additions and 24 deletions

View File

@ -46,6 +46,7 @@ public:
* @param startAtIndex
* @return
*/
// shouldnt startAtIndex be uint8?
virtual ReturnValue_t getParameter(uint8_t domainId, uint16_t parameterId,
ParameterWrapper *parameterWrapper,
const ParameterWrapper *newValues, uint16_t startAtIndex) = 0;

View File

@ -3,7 +3,7 @@
#include <framework/parameters/ParameterMessage.h>
ParameterHelper::ParameterHelper(ReceivesParameterMessagesIF* owner) :
owner(owner), storage(NULL) {
owner(owner), ownerQueueId(0), storage(NULL){
}