mirror of
https://github.com/nasa/fpp.git
synced 2025-12-16 13:25:15 -06:00
71 lines
1.7 KiB
C++
71 lines
1.7 KiB
C++
// ======================================================================
|
|
// \title ActiveTelemetryTester.cpp
|
|
// \author Generated by fpp-to-cpp
|
|
// \brief cpp file for ActiveTelemetry component test harness implementation class
|
|
// ======================================================================
|
|
|
|
#include "ActiveTelemetryTester.hpp"
|
|
|
|
// ----------------------------------------------------------------------
|
|
// Construction and destruction
|
|
// ----------------------------------------------------------------------
|
|
|
|
ActiveTelemetryTester ::
|
|
ActiveTelemetryTester() :
|
|
ActiveTelemetryGTestBase("ActiveTelemetryTester", ActiveTelemetryTester::MAX_HISTORY_SIZE),
|
|
component("ActiveTelemetry")
|
|
{
|
|
this->initComponents();
|
|
this->connectPorts();
|
|
}
|
|
|
|
ActiveTelemetryTester ::
|
|
~ActiveTelemetryTester()
|
|
{
|
|
|
|
}
|
|
|
|
// ----------------------------------------------------------------------
|
|
// Tests
|
|
// ----------------------------------------------------------------------
|
|
|
|
void ActiveTelemetryTester ::
|
|
toDo()
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
// ----------------------------------------------------------------------
|
|
// Handlers for typed from ports
|
|
// ----------------------------------------------------------------------
|
|
|
|
void ActiveTelemetryTester ::
|
|
from_typedOut_handler(
|
|
NATIVE_INT_TYPE portNum,
|
|
U32 u32,
|
|
F32 f32,
|
|
bool b,
|
|
const TypedPortStrings::StringSize80& str1,
|
|
const E& e,
|
|
const A& a,
|
|
const S& s
|
|
)
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
F32 ActiveTelemetryTester ::
|
|
from_typedReturnOut_handler(
|
|
NATIVE_INT_TYPE portNum,
|
|
U32 u32,
|
|
F32 f32,
|
|
bool b,
|
|
const TypedReturnPortStrings::StringSize80& str2,
|
|
const E& e,
|
|
const A& a,
|
|
const S& s
|
|
)
|
|
{
|
|
// TODO return
|
|
}
|