Target Monitoring Tools problem with UART2

Hello, I develop gps application with gps chip on UART2, but when I open UART2 whit adl_atCmdCreate(“AT+WMFM=0,1,2”,FALSE,WMFM_Handler,"*",NULL);, in RemoteTaskMonitor, the trace of Target Monitoring visualize infinite message --> “Trace DEV 1 Unable to find the string of the remote trace in the file (ID = 12036)” and the debug session is blocked.
If compile and download firmware on module Q2686 with firmaware version (at+cgmr is -->663_09gg.Q2686H 1955080 080207 16:01) the firmware is correct and the data from gps module is read correctly, but in debug mode is impossible ?

Why ?

Hope in your help

Thanks

I hope Eng_Sat has already solved this, but I thought I’d post some info I learned from a Wavecom FAE, for future reference:

AT+WMFM only works when issued from UART1 (at least on the Q2687, version 6.63b10). So, to use Eng_Sat’s example:

adl_atCmdCreate("AT+WMFM=0,1,2",FALSE,WMFM_Handler,"*",NULL);

should be:

adl_atCmdCreate("AT+WMFM=0,1,2",ADL_AT_PORT_TYPE(ADL_PORT_UART1,FALSE),WMFM_Handler,"*",NULL);