1
0
forked from fsfw/fsfw

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

This reverts commit c6e34cada6.
This commit is contained in:
2019-11-05 19:30:02 +01:00
parent af4e9db9e3
commit bf7bc342ff
3 changed files with 10 additions and 24 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(setObjectId, maxDeviceReplyLen,
setDeviceSwitch, deviceCommunication,ioBoardAddress, thermalStatePoolId,
DeviceHandlerBase(ioBoardAddress, setObjectId, maxDeviceReplyLen,
setDeviceSwitch, deviceCommunication, thermalStatePoolId,
thermalRequestPoolId, (customFdir == NULL? &childHandlerFdir : customFdir), cmdQueueSize), parentId(
parent), childHandlerFdir(setObjectId) {
}