fsfw/src/fsfw/tmtcpacket/pus/definitions.h

14 lines
340 B
C
Raw Normal View History

2021-10-05 13:13:36 +02:00
#ifndef FSFW_SRC_FSFW_TMTCPACKET_PUS_TM_DEFINITIONS_H_
#define FSFW_SRC_FSFW_TMTCPACKET_PUS_TM_DEFINITIONS_H_
#include <cstdint>
2022-07-19 18:13:25 +02:00
namespace ecss {
2021-10-05 13:13:36 +02:00
//! Version numbers according to ECSS-E-ST-70-41C p.439
2022-07-19 18:13:25 +02:00
enum PusVersion : uint8_t { PUS_A = 1, PUS_C = 2 };
2021-10-05 13:13:36 +02:00
2022-07-19 18:13:25 +02:00
} // namespace ecss
2021-10-05 13:13:36 +02:00
#endif /* FSFW_SRC_FSFW_TMTCPACKET_PUS_TM_DEFINITIONS_H_ */