This commit is contained in:
2021-04-16 18:59:48 +02:00
parent 0916ca87d9
commit b0e8a8624a
2 changed files with 6 additions and 3 deletions

View File

@ -15,6 +15,9 @@ namespace PLOC {
static const uint16_t SIZE_EXE_REPORT = 14;
static const uint16_t SIZE_TM_MEM_READ_REPORT = 18;
/** Reply comprises one ack report, the telemetry packet and the execution report */
static const uint16_t SIZE_TC_MEM_READ_REPLY = 49;
/**
* SpacePacket apids of PLOC telecommands and telemetry.
*/
@ -33,7 +36,7 @@ namespace PLOC {
static const uint16_t LENGTH_TC_MEM_WRITE = 12;
static const uint16_t LENGTH_TC_MEM_READ = 8;
static const size_t MAX_REPLY_SIZE = SIZE_TM_MEM_READ_REPORT;
static const size_t MAX_REPLY_SIZE = SIZE_TC_MEM_READ_REPLY;
static const size_t MAX_COMMAND_SIZE = 18;
/**