Update from upstream #85

Merged
meierj merged 91 commits from mueller/update-from-upstream into develop 2022-05-16 22:08:28 +02:00
1 changed files with 4 additions and 3 deletions
Showing only changes of commit 5a4539def4 - Show all commits

View File

@ -303,14 +303,15 @@ inline ReturnValue_t Service11TelecommandScheduling<MAX_NUM_TCS>::doTimeshiftAct
return result;
}
if (relativeTime == 0) {
return RETURN_FAILED;
return INVALID_RELATIVE_TIME;
}
// TODO further check sanity of the relative time?
// Get request ID
uint64_t requestId;
if (getRequestIdFromData(data, size, requestId) != RETURN_OK) {
return RETURN_FAILED;
result = getRequestIdFromData(data, size, requestId);
if (result != RETURN_OK) {
return result;
}
if (debugMode) {