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