mirror of
https://github.com/nasa/fpp.git
synced 2025-12-14 18:43:51 -06:00
42 lines
1.2 KiB
C++
Vendored
42 lines
1.2 KiB
C++
Vendored
// ======================================================================
|
|
// \title ActiveExternalStateMachines.cpp
|
|
// \author [user name]
|
|
// \brief cpp file for ActiveExternalStateMachines component implementation class
|
|
// ======================================================================
|
|
|
|
#include "ActiveExternalStateMachines.hpp"
|
|
|
|
namespace ExternalSm {
|
|
|
|
// ----------------------------------------------------------------------
|
|
// Component construction and destruction
|
|
// ----------------------------------------------------------------------
|
|
|
|
ActiveExternalStateMachines ::
|
|
ActiveExternalStateMachines(const char* const compName) :
|
|
ActiveExternalStateMachinesComponentBase(compName)
|
|
{
|
|
|
|
}
|
|
|
|
ActiveExternalStateMachines ::
|
|
~ActiveExternalStateMachines()
|
|
{
|
|
|
|
}
|
|
|
|
// ----------------------------------------------------------------------
|
|
// Overflow hook implementations for external state machines
|
|
// ----------------------------------------------------------------------
|
|
|
|
void ActiveExternalStateMachines ::
|
|
sm5_stateMachineOverflowHook(
|
|
const ExternalSm::ActiveExternalStateMachines_S2_Interface::ActiveExternalStateMachines_S2_Signals signal,
|
|
const Fw::SmSignalBuffer& data
|
|
)
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
}
|