eive-obsw/linux/ipcore/PtmeIF.h

24 lines
613 B
C
Raw Permalink Normal View History

2021-09-19 12:27:48 +02:00
#ifndef LINUX_OBC_PTMEIF_H_
#define LINUX_OBC_PTMEIF_H_
2023-10-13 09:20:51 +02:00
#include <linux/ipcore/VirtualChannelIF.h>
2022-08-24 17:27:47 +02:00
#include "fsfw/returnvalues/returnvalue.h"
2021-09-19 12:27:48 +02:00
/**
* @brief Interface class for managing the PTME IP Core implemented in the programmable logic.
*
* @details PTME IP Core: https://www.esa.int/Enabling_Support/Space_Engineering_Technology/
* Microelectronics/PTME
* @author J. Meier
*/
class PtmeIF {
2022-01-17 15:58:27 +01:00
public:
virtual ~PtmeIF(){};
2021-09-19 12:27:48 +02:00
2023-10-13 09:20:51 +02:00
virtual bool containsVc(uint8_t vcId) const = 0;
virtual VirtualChannelIF* getVirtChannel(uint8_t vcId) = 0;
2021-09-19 12:27:48 +02:00
};
#endif /* LINUX_OBC_PTMEIF_H_ */