2020-10-20 17:12:56 +02:00
|
|
|
#ifndef CONFIG_TMTC_APID_H_
|
|
|
|
#define CONFIG_TMTC_APID_H_
|
|
|
|
|
2020-10-29 11:47:03 +01:00
|
|
|
#include <cstdint>
|
2020-10-20 17:12:56 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Application Process Definition: entity, uniquely identified by an
|
|
|
|
* application process ID (APID), capable of generating telemetry source
|
2020-10-29 11:47:03 +01:00
|
|
|
* packets and receiving telecommand packets.
|
2020-10-20 17:12:56 +02:00
|
|
|
*
|
2020-10-29 11:47:03 +01:00
|
|
|
* Chose APID(s) for mission and define it here.
|
2020-10-20 17:12:56 +02:00
|
|
|
*/
|
|
|
|
namespace apid {
|
2020-10-29 11:47:03 +01:00
|
|
|
static const uint16_t DEFAULT_APID = 0x00;
|
2020-10-20 17:12:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* CONFIG_TMTC_APID_H_ */
|