Integer type to byte array
CODESYS Forge
talk
(Thread)
Integer type to byte array
Last updated: 2015-11-25
Byte oder Word als Bit benutzen
CODESYS Forge
talk
(Thread)
Byte oder Word als Bit benutzen
Last updated: 2010-10-23
Modbus / RS485 custom byte level message
CODESYS Forge
talk
(Thread)
Modbus / RS485 custom byte level message
Last updated: 2022-08-26
Read File more than 65535 byte
CODESYS Forge
talk
(Thread)
Read File more than 65535 byte
Last updated: 2023-07-25
Byte input and output 1734-OE2V
CODESYS Forge
talk
(Thread)
Byte input and output 1734-OE2V
Last updated: 2017-03-22
Einzelne Werte aus ARRAY OF BYTE
CODESYS Forge
talk
(Thread)
Einzelne Werte aus ARRAY OF BYTE
Last updated: 2005-11-14
Writing 16 byte SDO over Ethercat
CODESYS Forge
talk
(Thread)
Writing 16 byte SDO over Ethercat
Last updated: 2019-04-22
Byte an Ausgänge von EC4P
CODESYS Forge
talk
(Thread)
Byte an Ausgänge von EC4P
Last updated: 2007-04-27
String Array to Byte Array problem
CODESYS Forge
talk
(Thread)
String Array to Byte Array problem
Last updated: 2008-09-04
2 byte array convert to uint
CODESYS Forge
talk
(Thread)
2 byte array convert to uint
Last updated: 2019-04-30
byte count with NBS UDP receive
CODESYS Forge
talk
(Thread)
byte count with NBS UDP receive
Last updated: 2021-06-01
Assigning array of byte
CODESYS Forge
talk
(Thread)
Assigning array of byte
Last updated: 2015-11-26
Word to array of byte
CODESYS Forge
talk
(Thread)
Word to array of byte
Last updated: 2022-09-22
Codesys v3.5 Sint to byte
CODESYS Forge
talk
(Thread)
Codesys v3.5 Sint to byte
Last updated: 2024-04-24
Post by voffi on Converting UINT into bytes and converting 2Bytes into UINT
CODESYS Forge
talk
(Post)
There are some ways. One is to use SHR and SHL and it depends on your byte order in the data array. For Motorola byte order: PROGRAM PLC_PRG VAR u : UINT; byte_array_in : ARRAY [1..8] OF BYTE := [16#11, 16#12, 16#13, 16#14, 16#15, 16#16, 16#17]; byte_array_out : ARRAY [1..8] OF BYTE; END_VAR u := SHL(TO_UINT(byte_array_in[2]), 8) + TO_UINT(byte_array_in[1]); byte_array_out[1] := TO_BYTE(u); byte_array_out[2] := TO_BYTE(SHR(u, 8)); If it's Intel byte order just change 1 and 2 in the array indexes.
Last updated: 2023-12-07
Conversion BYTE to ASCII String + SysLibFileStream.lib
CODESYS Forge
talk
(Thread)
Conversion BYTE to ASCII String + SysLibFileStream.lib
Last updated: 2008-10-31
About byte swap and convert into 16 bits
CODESYS Forge
talk
(Thread)
About byte swap and convert into 16 bits
Last updated: 2023-12-04
Assign Initial Value of Array of Byte
CODESYS Forge
talk
(Thread)
Assign Initial Value of Array of Byte
Last updated: 2019-03-08
CANopen - mehr als 4 Byte aus dem Objektverzeichnis lesen
CODESYS Forge
talk
(Thread)
CANopen - mehr als 4 Byte aus dem Objektverzeichnis lesen
Last updated: 2007-06-15
Transfer array of byte to i2c-device
CODESYS Forge
talk
(Thread)
Transfer array of byte to i2c-device
Last updated: 2022-08-12
Pointer ARRAY BYTE to ARRAY BOOL
CODESYS Forge
talk
(Thread)
Pointer ARRAY BYTE to ARRAY BOOL
Last updated: 2008-06-06
Read byte from a file starting from a certain position
CODESYS Forge
talk
(Thread)
Read byte from a file starting from a certain position
Last updated: 2018-06-14
Byte conversion between RFID and RS232 module
CODESYS Forge
talk
(Thread)
Byte conversion between RFID and RS232 module
Last updated: 2008-07-09
Convert array of 4 byte to real
CODESYS Forge
talk
(Thread)
Convert array of 4 byte to real
Last updated: 2021-06-30
Post by timvh on Configuring a 2's compliment
CODESYS Forge
talk
(Post)
You could create a DUT of the Type Union and add an array of 2 bytes + an Int. Then write the byte values in the array of the Union and read the Int. Or VAR iInt : INT; byHigh : BYTE := 2#1111_1111; byLow : BYTE := 2#1111_1111; END_VAR iInt := TO_INT(byHigh*16#100 + byLow);
Last updated: 2024-09-28
To search for an exact phrase, put it in quotes. Example: "getting started docs"
To exclude a word or phrase, put a dash in front of it. Example: docs -help
To search on specific fields, use these field names instead of a general text search. You can group with AND
or OR
.