1
0
forked from fsfw/fsfw

ioBoardAddress protected instead of private to allow custom initialize

This commit is contained in:
2019-10-22 00:06:11 +02:00
parent 907664cea9
commit cbc8012198
5 changed files with 16 additions and 13 deletions

View File

@ -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.