Jakob Meier 608644f5f1
All checks were successful
EIVE/eive-obsw/pipeline/head This commit looks good
fixed merge conflicts
2021-10-29 18:43:01 +02:00

19 lines
420 B
C++

#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 {
static const uint16_t EIVE_OBSW = 0x65;
}
#endif /* CONFIG_TMTC_APID_H_ */