Good Day,
Is it possible to control the UART1 DSR pin while subscribed in FCM data mode? What i have noticed is after succesfull subscription to FCM using the following code:
FCMHandler = adl_fcmSubscribe(ADL_PORT_UART2, FCM_ControlHandler, FCM_DataHandler);
FCM _DataHandler contains the following code:
....
case ADL_FCM_EVENT_FLOW_OPENNED :
{
s8r=adl_fcmSwitchV24State(FCMHandler,ADL_FCM_V24_STATE_DATA);
}
....
the DSR pin is High.
What i would like to accomplish is changing the state of DSR pin using the following code while subscribed in FCM
adl_atCmdCreate("AT&S0",ADL_AT_PORT_TYPE(ADL_PORT_UART1,TRUE),CommandHandler,"*",NULL); //Make DSR HIGH
adl_atCmdCreate("AT&S0",ADL_AT_PORT_TYPE(ADL_PORT_UART1,TRUE),CommandHandler,"*",NULL); //Make DSR LOW
Thanks in advance for the help.
Regards,
Von