Svc/Ccsds/CfdpManager/ATTRIBUTION.md
This component implements the CCSDS File Delivery Protocol (CFDP) for F-Prime (F'). It includes both ported code from NASA's Core Flight System (cFS) CFDP application and new F' implementations.
Portions of this code are derived from the NASA Core Flight System (cFS) CFDP (CF) Application:
The following files are ports/adaptations from CF source code and retain the original NASA copyright:
Engine.hpp / .cpp - from cf_cfdp.c / cf_cfdp.hTransaction.hpp - from cf_cfdp_r.h / cf_cfdp_s.h / cf_cfdp_dispatch.hTransactionTx.cpp - from cf_cfdp_s.c / cf_cfdp_dispatch.cTransactionRx.cpp - from cf_cfdp_r.c / cf_cfdp_dispatch.cTypes/Types.hpp - from cf_cfdp_types.hUtils.hpp / .cpp - from cf_utils.h / cf_utils.cChannel.hpp / .cpp - from channel functions in cf_cfdp.c / cf_utils.cChunk.hpp / .cpp - from cf_chunks.h / cf_chunks.cClist.hpp / .cpp - from cf_clist.h / cf_clist.cEach of these files includes the full NASA copyright notice and Apache 2.0 license text in its header.
The following files are new implementations for F-Prime and do not contain CF-derived code:
CfdpManager.hpp / .cpp - F-Prime component wrapperTimer.hpp / .cpp - F-Prime timer implementationAll files in the Types/ directory are new F' serializable implementations based on the CFDP Blue Book specification (CCSDS 727.0-B-5):
Types/PduBase.hpp - Base class for all PDU typesTypes/PduHeader.hpp / .cpp - PDU header encoding/decodingTypes/MetadataPdu.hpp / .cpp - Metadata PDUTypes/FileDataPdu.hpp / .cpp - File Data PDUTypes/EofPdu.hpp / .cpp - End of File PDUTypes/FinPdu.hpp / .cpp - Finished PDUTypes/AckPdu.hpp / .cpp - Acknowledge PDUTypes/NakPdu.hpp / .cpp - Negative Acknowledge PDUThese files implement CFDP PDU encoding/decoding based on the specification rather than porting CF's C-style codec.
This component as a whole is licensed under the Apache License 2.0. See the top-level LICENSE.txt for the full license text.
The CF-derived portions retain their original NASA copyright and Apache 2.0 license as documented in their file headers.