2020-11-20 18:10:39 +01:00
|
|
|
#ifndef FSFWCONFIG_TMTC_APID_H_
|
|
|
|
#define FSFWCONFIG_TMTC_APID_H_
|
2020-09-16 16:22:36 +02:00
|
|
|
|
2020-12-17 19:38:26 +01:00
|
|
|
#include <cstdint>
|
2020-09-16 16:22:36 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Application Process Definition: entity, uniquely identified by an
|
|
|
|
* application process ID (APID), capable of generating telemetry source
|
|
|
|
* packets and receiving telecommand packets
|
|
|
|
*
|
2020-12-17 19:38:09 +01:00
|
|
|
* EIVE APID: 0x65 / 101 / e
|
2020-09-16 16:22:36 +02:00
|
|
|
* APID is a 11 bit number
|
|
|
|
*/
|
|
|
|
namespace apid {
|
2022-05-17 13:40:19 +02:00
|
|
|
static const uint16_t EIVE_OBSW = 0x65;
|
2020-09-16 16:22:36 +02:00
|
|
|
}
|
|
|
|
|
2020-11-20 18:10:39 +01:00
|
|
|
#endif /* FSFWCONFIG_TMTC_APID_H_ */
|