20 lines
253 B
C++
20 lines
253 B
C++
/*
|
|
* apid.h
|
|
*
|
|
* Created on: Sep 22, 2020
|
|
* Author: steffen
|
|
*/
|
|
|
|
#ifndef FSFWCONFIG_TMTC_APID_H_
|
|
#define FSFWCONFIG_TMTC_APID_H_
|
|
|
|
#include <cstdint>
|
|
|
|
namespace apid{
|
|
static const uint16_t APID = 0xEF;
|
|
};
|
|
|
|
|
|
|
|
#endif /* FSFWCONFIG_TMTC_APID_H_ */
|