/* * TestCommand1Impl.cpp * * Created on: Mar 28, 2014 * Author: tcanham */ #include #include #if FW_OBJECT_NAMES == 1 TestTlmImpl::TestTlmImpl(const char* name) : Tlm::TestTlmComponentBase(name) #else TestTlmImpl::TestTlmImpl() : Tlm::TestTlmComponentBase() #endif { } TestTlmImpl::~TestTlmImpl() { } void TestTlmImpl::init(void) { Tlm::TestTlmComponentBase::init(); } void TestTlmImpl::genTlm(Fw::TlmString& val) { printf("Writing value \"%s\" to telemetry.\n",val.toChar()); this->tlmWrite_stringchan(val); } void TestTlmImpl::aport_handler(NATIVE_INT_TYPE portNum, I32 arg4, F32 arg5, U8 arg6) { }