My tcpclient use well , how can i make it a dtu program?

Q24PL how to read the data from the COM1, and copy it to snd_buffer,send it to remote server ?

make it like DTU,(Transparent transmission)。

may i use adl_FcmSubscribe ?

or some function?

if use adl_FcmSubscribe function, when the data come from COM1,i will open the FCM again ? isn’t it ?

THX ALL.

Hi,

Yes, FCM service can be used to receive data on COM1.For this purpose, adl_FcmSubscribe() should be used to subscribe the FCM service on a specific port(say COM1 in your case),to open the requested port and to set the control and data handler. On successful subscription,the flow opened event ADL_FCM_EVENT_FLOW_OPENED will be received in the control handler. When some data is received on the subscribed port then data handler will be called to process data accordingly.

It should be noted that if COM1 is being subscribed for the FCM then run your Open AT application on some other port.

Thanks.