hi
i want to receive a call on computer i m using nokia 7610 as GSM modem. in hyper terminal i have received a call using ATA command. now a want to do this in c#. i dont knw how to use AT command in c#.
i have used the ATA command on btn clk just 4 chaking but it didnt work.
i have done this no idea what to do ferther to receive a call plz help me.
i want to receive a call on computer i m using nokia 7610 as GSM modem. in hyper terminal i have received a call using ATA command. now a want to do this in c#. i dont knw how to use AT command in c#.
Code:
serialPort1.PortName = "COM4";
serialPort1.BaudRate = 115200;
serialPort1.DataBits = 8;
serialPort1.Parity = Parity.None;
serialPort1.StopBits = StopBits.One;
serialPort1.Open();
Code:
serialPort1.Write("ATA");
Comment