blob: 33ebe7f6890c037fb5ca19b862f341f8a16eff22 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006 - 2013 Profactor GmbH, ACIN
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Thomas Strasser, Alois Zoitl, Gerhard Ebenhofer, Ingo Hegny,
* - initial API and implementation and/or initial documentation
*******************************************************************************/
#include "USINT2USINT.h"
#ifdef FORTE_ENABLE_GENERATED_SOURCE_CPP
#include "USINT2USINT_gen.cpp"
#endif
DEFINE_FIRMWARE_FB(USINT2USINT, g_nStringIdUSINT2USINT)
const CStringDictionary::TStringId USINT2USINT::scm_anDataInputNames[] = {g_nStringIdIN};
const CStringDictionary::TStringId USINT2USINT::scm_anDataOutputNames[] = {g_nStringIdOUT};
const CStringDictionary::TStringId USINT2USINT::scm_aunDIDataTypeIds[] = {g_nStringIdUSINT};
const CStringDictionary::TStringId USINT2USINT::scm_aunDODataTypeIds[] = {g_nStringIdUSINT};
const TForteInt16 USINT2USINT::scm_anEIWithIndexes[] = {0};
const TDataIOID USINT2USINT::scm_anEIWith[] = {0, 255};
const CStringDictionary::TStringId USINT2USINT::scm_anEventInputNames[] = {g_nStringIdREQ};
const TDataIOID USINT2USINT::scm_anEOWith[] = {0, 255};
const TForteInt16 USINT2USINT::scm_anEOWithIndexes[] = {0};
const CStringDictionary::TStringId USINT2USINT::scm_anEventOutputNames[] = {g_nStringIdCNF};
const SFBInterfaceSpec USINT2USINT::scm_stFBInterfaceSpec = {
1,
scm_anEventInputNames,
scm_anEIWith,
scm_anEIWithIndexes,
1,
scm_anEventOutputNames,
scm_anEOWith,
scm_anEOWithIndexes,
1,
scm_anDataInputNames, scm_aunDIDataTypeIds,
1,
scm_anDataOutputNames, scm_aunDODataTypeIds,
0,
0
};
void USINT2USINT::executeEvent(int pa_nEIID){
if(scm_nEventREQID == pa_nEIID){
OUT() = IN();
sendOutputEvent(scm_nEventCNFID);
}
}
USINT2USINT::~USINT2USINT(){
}