Schneider Quantum PLC assistance

Y

Thread Starter

Yogesh

URGENT HELP REQUIRED ON QUANTUM PLC

Hello Friends,

I am first time using Schneider Quantum PLC. I am use to Siemens PLCs & little bit of AB. I have stuck up with one point. I need some expert helps urgently.

I have a 3rd party equipment on RS232 communication to Quantum Hot Standby PLC & I have to give some Alphanumeric data (ASCII) at particular instant.

The data is 25 Character length

ABC0123456789_1111SCXYZCRLF

in this message 1111 is the number which will be dynamic & needs to count up till 9998 & then get reset & start again from 1111. After sending this data to the 3rd Party machine by Quantum PLC, I will received a feedback of 27 Char message from the 3rd machine in next 45 Sec which will be

ABC0123456789_11111A2AXYZCRLF

In which 11111A2A this data i need to pullout & use for next level decision.

If anyone expert in Quantum is available then please suggest me the simple & best way to execute this logic.

please contact me if you got some solution or did not understand what i mean to say

email : - tidke.yogesh [at] gmail.com
 
You can use the function
PRINT_CHAR(Conf_adresse,Conf_tl_tx,Res_tx);

Conf_adresse ARRAY[0..5] OF INT, slot = ADDR('0.3.0.SYS')
Conf_tl_tx string[25]
Res_rx ARRAY[0..3] OF INT

It's what i use for serial link communication (weight scale device for example)

good luck
 
Top