fdir update #158
Reference in New Issue
Block a user
No description provided.
Delete Branch "KSat/fsfw:mueller/devices/FDIR"
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?
General improvements.
Using objects::NO_OBJECT instead of 0 and MessageQueueIF::NO_QUEUE instead of 0.
@@ -31,2 +31,4 @@
bool hasPowerConfirmation = false;
MessageQueueId_t powerConfirmation;
static object_id_t powerConfirmationId;
// TODO: Are those hardcoded value? How can they be changed.
These values are used to initialize the defaults. Can be overwritten by child implementations.
ahhh that makes sense. maybe put DEFAULT_ in name to make it more explicit?
@@ -166,1 +172,3 @@
return RETURN_FAILED;
if (power != nullptr) {
powerConfirmation = power->getEventReceptionQueue();
hasPowerConfirmation = true;
Can we avoid the aditional bool by checking powerConfirmation != NO_QUEUE?
Yeah it's better like that.