mirror of
https://github.com/nasa/fpp.git
synced 2025-12-16 21:35:53 -06:00
38 lines
1.0 KiB
C++
Vendored
38 lines
1.0 KiB
C++
Vendored
// ======================================================================
|
|
// \title PassiveSerialTester.cpp
|
|
// \author [user name]
|
|
// \brief cpp file for PassiveSerial component test harness implementation class
|
|
// ======================================================================
|
|
|
|
#include "PassiveSerialTester.hpp"
|
|
|
|
// ----------------------------------------------------------------------
|
|
// Construction and destruction
|
|
// ----------------------------------------------------------------------
|
|
|
|
PassiveSerialTester ::
|
|
PassiveSerialTester() :
|
|
PassiveSerialGTestBase("PassiveSerialTester", PassiveSerialTester::MAX_HISTORY_SIZE),
|
|
component("PassiveSerial")
|
|
{
|
|
this->initComponents();
|
|
this->connectPorts();
|
|
this->component.registerExternalParameters(&this->paramTesterDelegate);
|
|
}
|
|
|
|
PassiveSerialTester ::
|
|
~PassiveSerialTester()
|
|
{
|
|
|
|
}
|
|
|
|
// ----------------------------------------------------------------------
|
|
// Tests
|
|
// ----------------------------------------------------------------------
|
|
|
|
void PassiveSerialTester ::
|
|
toDo()
|
|
{
|
|
// TODO
|
|
}
|