better returncode handling

This commit is contained in:
Robin Müller 2022-05-13 00:30:01 +02:00
parent 70d4fc1e0a
commit 038e47a46e
No known key found for this signature in database
GPG Key ID: 71B58F8A3CDFA9AC
1 changed files with 4 additions and 3 deletions

View File

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