1
0
forked from fsfw/fsfw

added defaultcfg config folder

This commit is contained in:
2020-10-20 17:38:41 +02:00
parent 335e146735
commit 482b77ff05
24 changed files with 835 additions and 0 deletions

View File

@ -0,0 +1,18 @@
#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 DEFAULT_APID = 0x00;
}
#endif /* CONFIG_TMTC_APID_H_ */