I am trying to send sms by using AT commands from micromax MMX310G 3G USB Manager (not modem). It has airtel sim without internet.
string recievedData = ExecCommand(port,"AT", 300, "No phone connected");
recievedData = ExecCommand(port,"AT+CMGF=1", 300, "Failed to set message format.");
String command = "AT+CMGS=\"" + PhoneNo + "\"";
recievedData = ExecCommand(port,command, 300, "Failed to accept phoneNo");
command = Message + char.ConvertFromUtf32(26) + "\r";
recievedData = ExecCommand(port,command, 3000, "Failed to send message");
When i debug AT and AT+CMGF returning ok and other commands returning Error. Is there any different AT commands for USB manager. Same code working fine when use Aircel datacard. Do we need internet to be activated in sim to run AT commands. Your valuable comments may help in this.