IoMgrReadInputs (FUN) ¶ FUNCTION IoMgrReadInputs : UDINT InOut: Scope Name Type Return IoMgrReadInputs UDINT Input pTaskMap POINTER TO IoConfigTaskMap
IoMgrScanModules (FUN) ¶ FUNCTION IoMgrScanModules : UDINT InOut: Scope Name Type Return IoMgrScanModules UDINT Input pConnector POINTER TO IoConfigConnector ppConnectorList POINTER TO POINTER TO IoConfigConnector pnCount POINTER TO DINT
IoMgrStartBusCycle (FUN) ¶ FUNCTION IoMgrStartBusCycle : UDINT InOut: Scope Name Type Return IoMgrStartBusCycle UDINT Input pConnector POINTER TO IoConfigConnector
CloseKbus (FUN) ¶ FUNCTION CloseKbus : DINT Closes the device @param deviceId Id of the device. @return Returns 0 on success, -1 otherwise. InOut: Scope Name Type Return CloseKbus DINT Input deviceId DINT
ConfigureDevice (FUN) ¶ FUNCTION ConfigureDevice : DINT Configures a device. @param deviceId Id of the device. @param configData The device specific configuration. @return Returns 0 on success, -1 otherwise. InOut: Scope Name Type Return ConfigureDevice DINT Input deviceId DINT configData POINTER TO BYTE
ConfigureSubdevice (FUN) ¶ FUNCTION ConfigureSubdevice : DINT Configures a sub device. @param deviceId Id of the device. @param subdeviceId Id of the sub device. @param configData The device specific configuration. @return Returns 0 on success, -1 otherwise. InOut: Scope Name Type Return ConfigureSubdevice DINT Input deviceId DINT subdeviceId DINT configData POINTER TO BYTE
DiagnoseGetDeviceState (FUN) ¶ FUNCTION DiagnoseGetDeviceState : DINT Get the state of the device (corresponds to codesys’ bus). @param[in] deviceId Id of the device. @param[in] bufferSize Size of the supplied buffer. @param[out] diagnoseBuffer Buffer where the state is stored in. @param[out] busState The state of the bus. @return Returns 0 on success, -1 otherwise. InOut: Scope Name Type Return DiagnoseGetDeviceState DINT Input deviceId DINT bufferSize UDINT diagnoseBuffer POINTER TO BYTE busState POINTER TO tBusState
DiagnoseGetSubdeviceState (FUN) ¶ FUNCTION DiagnoseGetSubdeviceState : DINT Get the state of a subdevice (corresponds to codesys’ device). @param deviceId Id of the device. @param subdeviceId Id of the device to get the state from. @param[in] bufferSize Size of the supplied buffer. @param[out] diagnoseBuffer Buffer where the state data is stored in. @param[out] diagnoseState The state of the diagnose. @return Returns 0 on success, -1 otherwise. InOut: Scope Name Type Return DiagnoseGetSubdeviceState DINT Input deviceId DINT subdeviceId DINT bufferSize UDINT diagnoseBuffer POINTER TO BYTE diagnoseState POINTER TO tDiagnoseState
GetDeviceFlags (FUN) ¶ FUNCTION GetDeviceFlags : DINT Returns the devices flags @param deviceId @param flags Pointer to the flags @return Returns 0 on success, -1 otherwise. InOut: Scope Name Type Return GetDeviceFlags DINT Input deviceId DINT flags POINTER TO UDINT
GetIoSizes (FUN) ¶ FUNCTION GetIoSizes : DINT Gets the sizes of the devices input and output. @param deviceId Id of the device. @param inputSize Pointer to where the size of the input will be stored. @param outputSize Pointer to where the size of the output will be stored. @return Returns 0 on success, -1 otherwise. InOut: Scope Name Type Return GetIoSizes DINT Input deviceId DINT inputSize POINTER TO UDINT outputSize POINTER TO UDINT