linux working

This commit is contained in:
2020-09-16 16:22:36 +02:00
committed by Robin.Mueller
parent 2d9d01b5d0
commit bc525ab2eb
47 changed files with 1926 additions and 6 deletions

19
config/tmtc/apid.h Normal file
View File

@ -0,0 +1,19 @@
#ifndef CONFIG_TMTC_APID_H_
#define CONFIG_TMTC_APID_H_
#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
*
* SOURCE APID: 0x73 / 115 / s
* APID is a 11 bit number
*/
namespace apid {
static const uint16_t EIVE_OBSW = 0x65;
}
#endif /* CONFIG_TMTC_APID_H_ */