TypeDesc_UAProperties.GetReferenceBaseType_internal (METH) ¶ METHOD GetReferenceBaseType_internal : REFERENCE TO TypeDesc InOut: Scope Name Type Return GetReferenceBaseType_internal REFERENCE TO TypeDesc Input pResult POINTER TO RTS_IEC_RESULT
SysCom23 Library Documentation ¶ Company System Title SysCom23 Version 3.5.13.0 Categories System|SysLibs23 Author 3S - Smart Software Solutions GmbH Description 1 ¶ Compatibility library for CoDeSys 2.3 projects, to get access to a serial interface (RS232). Contents: ¶ Data types COMSETTINGS (Struct) COMSETTINGSEX (Struct) PORTS (Enum) Global Variables Globale_Variablen (GVL) POUs SysComClose (Function) SysComGetVersion2300 (Function) SysComOpen (Function) SysComRead (Function) SysComSetSettings (Function) SysComSetSettingsEx (Function) SysComWrite (Function) extern30 COM_Baudrate (Enum) COM_Parity (Enum) COM_Ports (Enum) COM_Settings (Struct) COM_SettingsEx (Struct) COM_StopBits (Enum) COM_Timeout (Enum) SysComClose30 (Function) SysComGetSettings30 (Function) SysComOpen30 (Function) SysComRead30 (Function) SysComSetSettings30 (Function) SysComWrite30 (Function) Indices and tables ¶ 1 Based on SysCom23.library, last modified 03.07.2018, 10:34:32. LibDoc 4.4.0.0-b.27 The content file SysCom23.clean.json was generated with CODESYS V3.5 SP13 on 03.07.2018, 10:34:32.
SysCom Library Documentation ¶ Company System Title SysCom Version 3.5.17.0 Categories System|SysLibs Author 3S - Smart Software Solutions GmbH Placeholder SysCom Description 1 ¶ Library, to get access to a serial interface (RS232). Contents: ¶ SYS_COM_BAUDRATE (Enum) SYS_COM_DTR_CONTROL (Enum) SYS_COM_PARITY (Enum) SYS_COM_PORTS (Enum) SYS_COM_RTS_CONTROL (Enum) SYS_COM_STOPBITS (Enum) SYS_COM_TIMEOUT (Enum) SysComClose (Function) SysComGetSettings (Function) SysComGetSettings2 (Function) SysComOpen (Function) SysComOpen2 (Function) SysComOpen3 (Function) SysComPurge (Function) SysComRead (Function) SysComSetSettings (Function) SysComSetSettings2 (Function) SysComSetTimeout (Function) SysComSettings (Struct) SysComSettingsEx (Struct) SysComSettingsEx2 (Struct) SysComWrite (Function) Indices and tables ¶ 1 Based on SysCom.library, last modified 20.04.2021, 16:01:39. LibDoc 4.4.0.0-b.27 The content file SysCom.clean.json was generated with CODESYS V3.5 SP16 Patch 3 on 20.04.2021, 16:01:39.
SYS_COM_BAUDRATE (ENUM) ¶ TYPE SYS_COM_BAUDRATE : <category>Baudrates</category> <description>: Supported baudrates</description> InOut: Name Initial SYS_BR_4800 4800 SYS_BR_9600 9600 SYS_BR_19200 19200 SYS_BR_38400 38400 SYS_BR_57600 57600 SYS_BR_115200 115200
SYS_COM_DTR_CONTROL (ENUM) ¶ TYPE SYS_COM_DTR_CONTROL : <category>DTR control</category> <description>: DTR control configuration</description> InOut: Name Initial Comment SYS_DTR_CONTROL_DISABLE 0 <element name=”SYS_DTR_CONTROL_DISABLE” TYPE=”IN”>Disables the DTR line when the device is opened and leaves it disabled.</element> SYS_DTR_CONTROL_ENABLE 1 <element name=”SYS_DTR_CONTROL_ENABLE” TYPE=”IN”>Enables the DTR line when the device is opened and leaves it on.</element> SYS_DTR_CONTROL_HANDSHAKE 2 <element name=”SYS_DTR_CONTROL_HANDSHAKE” TYPE=”IN”>Enables DTR handshaking.</element>
Data types ¶ COMSETTINGS (Struct) COMSETTINGSEX (Struct) PORTS (Enum)
SYS_COM_PARITY (ENUM) ¶ TYPE SYS_COM_PARITY : <category>Parity</category> <description>: Supported parity</description> InOut: Name Initial Comment SYS_NOPARITY 0 <element name=”SYS_NOPARITY” TYPE=”IN”>No parity</element> SYS_ODDPARITY <element name=”SYS_ODDPARITY” TYPE=”IN”>Odd parity</element> SYS_EVENPARITY <element name=”SYS_EVENPARITY” TYPE=”IN”>Even parity</element>
SYS_COM_PORTS (ENUM) ¶ TYPE SYS_COM_PORTS : <category>Com ports</category> <description>: Supported com port numbers</description> InOut: Name Initial SYS_COMPORT_NONE 0 SYS_COMPORT1 1 SYS_COMPORT2 SYS_COMPORT3 SYS_COMPORT4
COMSETTINGS (STRUCT) ¶ TYPE COMSETTINGS : STRUCT InOut: Name Type Comment Port PORTS dwBaudRate DWORD 4800, 9600, 19200, 38400, 57600, 115200 byStopBits BYTE 0 = ONESTOPBIT, 1=ONE5STOPBITS, 2=TWOSTOPBITS byParity BYTE 0 = NOPARITY, 1 = ODDPARITY, 2 = EVENPARITY dwTimeout DWORD Timeout in ms of interface, 0 = default value dwBufferSize DWORD Buffer size of device internal buffer, 0 = default value dwScan DWORD Scan time of serial interface, should be set to 0
SYS_COM_RTS_CONTROL (ENUM) ¶ TYPE SYS_COM_RTS_CONTROL : <category>RTS control</category> <description>: RTS control configuration</description> InOut: Name Initial Comment SYS_RTS_CONTROL_DISABLE 0 <element name=”SYS_RTS_CONTROL_DISABLE” TYPE=”IN”>Disables the RTS line when the device is opened and leaves it disabled.</element> SYS_RTS_CONTROL_ENABLE 1 <element name=”SYS_RTS_CONTROL_ENABLE” TYPE=”IN”>Enables the RTS line when the device is opened and leaves it on.</element> SYS_RTS_CONTROL_HANDSHAKE 2 <element name=”SYS_RTS_CONTROL_HANDSHAKE” TYPE=”IN”>Enables RTS handshaking.</element> SYS_RTS_CONTROL_TOGGLE 3 <element name=”SYS_RTS_CONTROL_TOGGLE” TYPE=”IN”>Specifies that the RTS line will be high if bytes are available for transmission. After all buffered bytes have been sent, the RTS line will be low.</element>