mirror of
https://github.com/nasa/fpp.git
synced 2025-12-17 05:51:30 -06:00
37 lines
1015 B
C++
Vendored
37 lines
1015 B
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(this->paramDelegate, "PassiveSerial")
|
|
{
|
|
this->initComponents();
|
|
this->connectPorts();
|
|
}
|
|
|
|
PassiveSerialTester ::
|
|
~PassiveSerialTester()
|
|
{
|
|
|
|
}
|
|
|
|
// ----------------------------------------------------------------------
|
|
// Tests
|
|
// ----------------------------------------------------------------------
|
|
|
|
void PassiveSerialTester ::
|
|
toDo()
|
|
{
|
|
// TODO
|
|
}
|