fsfw/unittest/user/testcfg/tmtc/apid.h

19 lines
423 B
C
Raw Normal View History

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