eive-obsw/fsfwconfig/tmtc/apid.h

20 lines
439 B
C
Raw Normal View History

2020-11-20 18:10:39 +01:00
#ifndef FSFWCONFIG_TMTC_APID_H_
#define FSFWCONFIG_TMTC_APID_H_
2020-09-16 16:22:36 +02:00
#include <stdint.h>
/**
* Application Process Definition: entity, uniquely identified by an
* application process ID (APID), capable of generating telemetry source
* packets and receiving telecommand packets
*
2020-12-17 19:38:09 +01:00
* EIVE APID: 0x65 / 101 / e
2020-09-16 16:22:36 +02:00
* APID is a 11 bit number
*/
namespace apid {
static const uint16_t EIVE_OBSW = 0x65;
}
2020-11-20 18:10:39 +01:00
#endif /* FSFWCONFIG_TMTC_APID_H_ */