PDEC corrupted Config Event #773
Labels
No Label
OPS TODO
api change
breaking api change
bug
documentation
duplicate
feature
help wanted
invalid
question
wontfix
No Milestone
No Assignees
3 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: eive/eive-obsw#773
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "meier/pdec-config-readback"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
WIP: PDEC corrupted Config Eventto PDEC corrupted Config Event@ -192,0 +179,4 @@
ReturnValue_t result =
localParameterHandler.getValue(pdecconfigdefs::paramkeys::POSITIVE_WINDOW, positiveWindow);
if (result != returnvalue::OK) {
return result;
This will return a returnvalue for an uint32_t function. This will also mean
writeFrameHeaderFirstWord()
will always return anreturnvalue::OK
, even if this function returns early. This function probably should always return a returnvalue and the word should be passed by pointer.Good catch. Should be fixed now.
@ -192,0 +190,4 @@
ReturnValue_t result =
localParameterHandler.getValue(pdecconfigdefs::paramkeys::NEGATIVE_WINDOW, negativeWindow);
if (result != returnvalue::OK) {
return result;
same as above
PDEC corrupted Config Eventto WIP: PDEC corrupted Config EventWIP: PDEC corrupted Config Eventto PDEC corrupted Config Event