Problem with changing handshaking

I have another problem concerning handshaking during communication beetween modem and PC.
In the following code I have done a little change in HelloWord application.
I would continually sending “Hello world” but at a baud rate of 19200 bps, parity even and no handshake.

So

1)at+ipr=19200
2)at+icf=2,1
3)at+ifc=0,0

void adl_main ( adl_InitType_e InitType )
{
    TRACE (( 1, "Embedded Application : Main" ));
    
    
//uart1 closing
	adl_atCmdCreate("AT+WMFM=0,0,1",ADL_AT_PORT_TYPE( ADL_AT_UART1, FALSE ),(adl_atRspHandler_t)ATD_Response_Handler,"*",NULL);



//baud rate
adl_atCmdCreate("at+ipr=19200",ADL_AT_PORT_TYPE( ADL_AT_UART1, FALSE ),(adl_atRspHandler_t)ATD_Response_Handler,"*",NULL);

//parity
adl_atCmdCreate("at+icf=2,1",ADL_AT_PORT_TYPE( ADL_AT_UART1, FALSE ),(adl_atRspHandler_t)ATD_Response_Handler,"*",NULL);

//handshake
adl_atCmdCreate("at+ifc=0,0",ADL_AT_PORT_TYPE( ADL_AT_UART1, FALSE ),(adl_atRspHandler_t)ATD_Response_Handler,"*",NULL);
	

//uart1 opening
	adl_atCmdCreate("AT+WMFM=0,1,1",ADL_AT_PORT_TYPE( ADL_AT_UART1, FALSE ),(adl_atRspHandler_t)ATD_Response_Handler,"*",NULL); 
	
	

	
	// Set 1s cyclic timer 
    adl_tmrSubscribe ( TRUE, 30, ADL_TMR_TYPE_100MS, HelloWorld_TimerHandler );
}

There’s no problem with baud rate and parity but the modem doesn’t respond anymore when I change the handshake setting.

You have any ideas?

Lorenzo

Duplicate Post: wavecom.com/modules/movie/sc … php?p=3484