mirror of
https://github.com/nasa/fprime.git
synced 2025-12-11 13:54:34 -06:00
32 lines
705 B
C++
32 lines
705 B
C++
/*
|
|
* TestCommand1Impl.cpp
|
|
*
|
|
* Created on: Mar 28, 2014
|
|
* Author: tcanham
|
|
*/
|
|
|
|
#include <Autocoders/Python/test/param_string/TestPrmImpl.hpp>
|
|
#include <cstdio>
|
|
|
|
TestPrmImpl::TestPrmImpl(const char* name) : Prm::TestPrmComponentBase(name)
|
|
{
|
|
}
|
|
|
|
TestPrmImpl::~TestPrmImpl() {
|
|
}
|
|
|
|
void TestPrmImpl::init() {
|
|
Prm::TestPrmComponentBase::init();
|
|
}
|
|
|
|
void TestPrmImpl::aport_handler(FwIndexType 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");
|
|
}
|