GSM MODEM : AT COMMAND to know my operator

at-command

Solution

You should use `AT+COPS=<mode>,[<format>,<oper>[,<AcT>]]` command as was pointed out, but `<mode>` value need to be `3` to not to override your existing `<mode>` value:

<mode>: integer type
3   set only <format> (for read command +COPS?), do not attempt
    registration/deregistration (<oper> and <AcT> fields are ignored);
    this value is not applicable in read command response.

And `<format>` need to be 0 or 1

<format>: integer type
0   long format alphanumeric <oper>
1   short format alphanumeric <oper>
2   numeric <oper>

So your commands are

AT+COPS=3,0
AT+COPS?

Problem

Can any one please let me know, is there any AT command by which I can detect the current operator name? I have used AT+COPS? It returned me the numeric code for the operator: 0,2,40410 Then I used the command AT+WOPN = 0,40410 which returns the alphanumeric value for the operator but that only gives Airtel operator's name, and for other operators it gives an error. Please help me.

Original source