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

14 lines
354 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>
namespace pus {
//! Version numbers according to ECSS-E-ST-70-41C p.439
2022-02-02 10:29:30 +01:00
enum PusVersion : uint8_t { PUS_A_VERSION = 1, PUS_C_VERSION = 2 };
2021-10-05 13:13:36 +02:00
2022-02-02 10:29:30 +01:00
} // namespace pus
2021-10-05 13:13:36 +02:00
#endif /* FSFW_SRC_FSFW_TMTCPACKET_PUS_TM_DEFINITIONS_H_ */