2021-09-29 09:30:58 +02:00
|
|
|
#ifndef CONFIG_TMTC_APID_H_
|
|
|
|
#define CONFIG_TMTC_APID_H_
|
|
|
|
|
|
|
|
#include <cstdint>
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Application Process Definition: entity, uniquely identified by an
|
|
|
|
* application process ID (APID), capable of generating telemetry source
|
|
|
|
* packets and receiving telecommand packets.
|
|
|
|
*
|
|
|
|
* Chose APID(s) for mission and define it here.
|
|
|
|
*/
|
|
|
|
namespace apid {
|
2021-09-29 10:52:36 +02:00
|
|
|
static const uint16_t EIVE_OBSW = 0x65;
|
2021-09-29 09:30:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* CONFIG_TMTC_APID_H_ */
|