/* * TestCommand1Impl.cpp * * Created on: Mar 28, 2014 * Author: tcanham */ #include #include #if FW_OBJECT_NAMES == 1 TestPrmImpl::TestPrmImpl(const char* name) : Prm::TestPrmComponentBase(name) #else TestPrmImpl::TestPrmImpl() : Prm::TestPrmComponentBase() #endif { } TestPrmImpl::~TestPrmImpl() { } void TestPrmImpl::init() { Prm::TestPrmComponentBase::init(); } void TestPrmImpl::aport_handler(NATIVE_INT_TYPE portNum, I32 arg4, F32 arg5, U8 arg6) { } void TestPrmImpl::printParam() { Fw::ParamValid valid = Fw::ParamValid::INVALID; const Fw::ParamString& prmRef = this->paramGet_stringparam(valid); printf("Parameter is: \"%s\" %s\n",prmRef.toChar(),valid==Fw::ParamValid::VALID?"VALID":"INVALID"); }