1
0
forked from fsfw/fsfw

documentation for DHB init function, ioBoard addres has default value 0 now, order in ctor changed (not used in source)

This commit is contained in:
2019-10-22 17:15:29 +02:00
parent cbc8012198
commit c6e34cada6
3 changed files with 24 additions and 10 deletions

View File

@ -7,8 +7,8 @@ ChildHandlerBase::ChildHandlerBase(uint32_t ioBoardAddress,
uint32_t maxDeviceReplyLen, uint8_t setDeviceSwitch,
uint32_t thermalStatePoolId, uint32_t thermalRequestPoolId,
uint32_t parent, FailureIsolationBase* customFdir, uint32_t cmdQueueSize) :
DeviceHandlerBase(ioBoardAddress, setObjectId, maxDeviceReplyLen,
setDeviceSwitch, deviceCommunication, thermalStatePoolId,
DeviceHandlerBase(setObjectId, maxDeviceReplyLen,
setDeviceSwitch, deviceCommunication,ioBoardAddress, thermalStatePoolId,
thermalRequestPoolId, (customFdir == NULL? &childHandlerFdir : customFdir), cmdQueueSize), parentId(
parent), childHandlerFdir(setObjectId) {
}