Hello all!
Help me, please, with command at+cusd.
I send at+cusd=1,"*100#" and must have responses
+CUSD: 1,OK
+CUSD: 2,“Balans…”
My code is:
Send command
adl_atCmdCreate("AT+CUSD=1,“100#"",FALSE, evh_answer,"”,NULL);
bool evh_answer (adl_atResponse_t* ust)
{
TRACE((1,ust->StrData));
return TRUE;
}
As a result function evh_answer executes only one time (I get only response +CUSD: 1,OK)
and the second response I can show only in the Terminal Emulator.
What do I wrong?