blob: 1f80736f27727c760c40fc8d68e689a87ea6d6c4 [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 "WSTRING2WSTRING.h"
#ifdef FORTE_ENABLE_GENERATED_SOURCE_CPP
#include "WSTRING2WSTRING_gen.cpp"
#endif
DEFINE_FIRMWARE_FB(WSTRING2WSTRING, g_nStringIdWSTRING2WSTRING)
const CStringDictionary::TStringId WSTRING2WSTRING::scm_anDataInputNames[] = {g_nStringIdIN};
const CStringDictionary::TStringId WSTRING2WSTRING::scm_anDataOutputNames[] = {g_nStringIdOUT};
const CStringDictionary::TStringId WSTRING2WSTRING::scm_aunDIDataTypeIds[] = {g_nStringIdWSTRING};
const CStringDictionary::TStringId WSTRING2WSTRING::scm_aunDODataTypeIds[] = {g_nStringIdWSTRING};
const TForteInt16 WSTRING2WSTRING::scm_anEIWithIndexes[] = {0};
const TDataIOID WSTRING2WSTRING::scm_anEIWith[] = {0, 255};
const CStringDictionary::TStringId WSTRING2WSTRING::scm_anEventInputNames[] = {g_nStringIdREQ};
const TDataIOID WSTRING2WSTRING::scm_anEOWith[] = {0, 255};
const TForteInt16 WSTRING2WSTRING::scm_anEOWithIndexes[] = {0};
const CStringDictionary::TStringId WSTRING2WSTRING::scm_anEventOutputNames[] = {g_nStringIdCNF};
const SFBInterfaceSpec WSTRING2WSTRING::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 WSTRING2WSTRING::executeEvent(int pa_nEIID){
if(scm_nEventREQID == pa_nEIID){
st_OUT() = st_IN();
sendOutputEvent(scm_nEventCNFID);
}
}
WSTRING2WSTRING::~WSTRING2WSTRING(){
}