fprime/Ref/RecvBuffApp/RecvBuffComponentImpl.hpp
2021-07-14 12:54:01 -07:00

37 lines
959 B
C++

#ifndef REF_LPR_ATM_IMPL_HPP
#define REF_LPR_ATM_IMPL_HPP
#include <Ref/RecvBuffApp/RecvBuffComponentAc.hpp>
namespace Ref {
class RecvBuffImpl : public RecvBuffComponentBase {
public:
// Only called by derived class
RecvBuffImpl(const char* compName);
void init();
~RecvBuffImpl();
private:
// downcall for input port
void Data_handler(NATIVE_INT_TYPE portNum, Drv::DataBuffer &buff);
Ref::PacketStat m_stats;
U32 m_buffsReceived; // !< number of buffers received
bool m_firstBuffReceived; // !< first buffer received or not
U32 m_errBuffs; // !< number of buffers with errors received
F32 m_sensor1;
F32 m_sensor2;
void toString(char* str, I32 buffer_size);
// parameter update notification
void parameterUpdated(FwPrmIdType id);
};
}
#endif