I have done all call dialing part and it works. Now I need to play audio and record the responce audio comming from the other end.I just need to know how can I pass the audio to the dongle and send it through the call, and how to record the feedback that is comming from the other end
this is my working cord for dialing phone number(I'm using huwavi E173 hsdpa Dongle)
`SerialPort port = new SerialPort();
port.Open();
string t = port.ReadExisting();
Thread.Sleep(100);
string cmd = "ATD";
string phoneNumber = "071********";
port.WriteLine(cmd + phoneNumber + ";\r");
port.Close();`