CFDP source handler #776
No reviewers
Labels
No Label
OPS TODO
api change
breaking api change
bug
documentation
duplicate
feature
help wanted
invalid
question
wontfix
No Milestone
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: eive/eive-obsw#776
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "cfdp-source-handler"
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?
FSFW PR: eive/fsfw#157
TMTC PR: eive/eive-tmtc#233
WIP: CFDP source handlerto CFDP source handlerCFDP source handlerto WIP: CFDP source handlerWIP: CFDP source handlerto CFDP source handler5bcd171108
to9f600a24ff
@ -18,1 +18,4 @@
## Added
- CFDP source handler, which allow file downlink using the standardized
he, she, it - the s must fit
@ -0,0 +5,4 @@
namespace cfdp {
class EiveFaultHandler : public cfdp::FaultHandlerBase {
should these maybe trigger an event or are they purely for ground debugging?
It might make sense to trigger events for some of these callbacks.. or even all of them.
@ -108,1 +153,3 @@
accessorPair.second.release();
PacketInfo info(type, msg.getStorageId(), directive);
// Implement this function.
das
@ -137,0 +188,4 @@
sif::info << "Received CFDP put request" << std::endl;
if (srcHandler.getState() != CfdpState::IDLE) {
if (putRequestQueue.full()) {
// TODO: Trigger event and discard request. Queue is full, too many requests.
ist
@ -137,0 +207,4 @@
if (remoteCfg == nullptr) {
sif::error << "CfdpHandler: No remote configuration found for destination ID "
<< putRequest.getDestId() << std::endl;
// TODO: Trigger event
das
@ -97,0 +175,4 @@
if (result == DirectTmSinkIF::PARTIALLY_WRITTEN) {
result = channel.handleWriteCompletionSynchronously(writtenSize, 200);
if (result != returnvalue::OK) {
// TODO: Event? Might lead to dangerous spam though..
haus
@ -143,0 +143,4 @@
if (result == VirtualChannelIF::PARTIALLY_WRITTEN) {
result = channel.handleWriteCompletionSynchronously(writtenSize, 200);
if (result != returnvalue::OK) {
// TODO: Event? Might lead to dangerous spam though..
vom
@ -41,0 +43,4 @@
if (result == PARTIALLY_WRITTEN) {
result = handleWriteCompletionSynchronously(writtenSize, 200);
if (result != returnvalue::OK) {
// TODO: Event? Might lead to dangerous spam though..
nikolaus