add remote config table provider class

This commit is contained in:
2022-08-09 18:51:44 +02:00
parent 8c059f8f32
commit d45108e3c2
11 changed files with 92 additions and 30 deletions

View File

@ -11,7 +11,11 @@
namespace cfdp {
static constexpr uint8_t VERSION_BITS = 0b00100000;
static constexpr char CFDP_VERSION_2_NAME[] = "CCSDS 727.0-B-5";
// Second version of the protocol, only this one is supported here
static constexpr uint8_t CFDP_VERSION_2 = 0b001;
static constexpr uint8_t VERSION_BITS = CFDP_VERSION_2 << 5;
static constexpr uint8_t CFDP_CLASS_ID = CLASS_ID::CFDP;