Small SCEX fix #761
@@ -16,6 +16,11 @@ will consitute of a breaking change warranting a new major release:
|
|||||||
|
|
||||||
# [unreleased]
|
# [unreleased]
|
||||||
|
|
||||||
|
## Fixed
|
||||||
|
|
||||||
|
- Small SCEX fix: The temperatur check option was not passed
|
||||||
|
on for commands with a user data size larger than 1.
|
||||||
|
|
||||||
# [v6.2.0] 2023-07-26
|
# [v6.2.0] 2023-07-26
|
||||||
|
|
||||||
- `eive-tmtc`: v5.3.1
|
- `eive-tmtc`: v5.3.1
|
||||||
|
@@ -47,7 +47,7 @@ ReturnValue_t ScexDeviceHandler::buildCommandFromCommand(DeviceCommandId_t devic
|
|||||||
return DeviceHandlerIF::COMMAND_NOT_IMPLEMENTED;
|
return DeviceHandlerIF::COMMAND_NOT_IMPLEMENTED;
|
||||||
}
|
}
|
||||||
bool tempCheck = false;
|
bool tempCheck = false;
|
||||||
if (commandDataLen == 1) {
|
if (commandDataLen >= 1) {
|
||||||
tempCheck = commandData[0];
|
tempCheck = commandData[0];
|
||||||
}
|
}
|
||||||
if (commandActive) {
|
if (commandActive) {
|
||||||
|
2
tmtc
2
tmtc
Submodule tmtc updated: cbcc06ede7...ab770a0057
Reference in New Issue
Block a user