2020-10-20 17:38:41 +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 {
|
2022-02-02 10:29:30 +01:00
|
|
|
static const uint16_t DEFAULT_APID = 0x00;
|
2020-10-20 17:38:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* CONFIG_TMTC_APID_H_ */
|