ioBoardAddress protected instead of private to allow custom initialize
This commit is contained in:
@ -141,6 +141,11 @@ public:
|
||||
*/
|
||||
virtual void setTaskIF(PeriodicTaskIF* task_);
|
||||
protected:
|
||||
/**
|
||||
* cached from ctor for initialize()
|
||||
*/
|
||||
const uint32_t ioBoardAddress;
|
||||
|
||||
/**
|
||||
* The Returnvalues id of this class, required by HasReturnvaluesIF
|
||||
*/
|
||||
@ -163,6 +168,8 @@ protected:
|
||||
static const DeviceCommandId_t NO_COMMAND_ID = -2;
|
||||
static const MessageQueueId_t NO_COMMANDER = 0;
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Pointer to the raw packet that will be sent.
|
||||
*/
|
||||
@ -833,6 +840,9 @@ protected:
|
||||
DeviceCommandMap deviceCommandMap;
|
||||
|
||||
ActionHelper actionHelper;
|
||||
|
||||
|
||||
|
||||
private:
|
||||
|
||||
/**
|
||||
@ -865,10 +875,6 @@ private:
|
||||
*/
|
||||
CookieInfo cookieInfo;
|
||||
|
||||
/**
|
||||
* cached from ctor for initialize()
|
||||
*/
|
||||
const uint32_t ioBoardAddress;
|
||||
|
||||
/**
|
||||
* Used for timing out mode transitions.
|
||||
|
Reference in New Issue
Block a user