AT Command

Description

AT+NETMODE command is used to set to WCDMA or TDSCDMA modes.


Support

Simcom Module Tutorial

Examples

KeywordsAT+NETMODE syntax, examples, parameters, error, input, response.


Test AT+NETMODE command with AT Command Tester





Try this script included in AT Command Tester Tool.

//Script: at+netmode

//This AT command is applicable for SIMCOM modules only

//Check SIMCOM Module AT Command documentaiton

//WCDMA and TDSCDMA mode select

?

//Get the command support

AT+NETMODE=?

 

//Wait

WAIT=2

 

//Get the current mode

AT+NETMODE?

//Wait

WAIT=2

 

//Set for TDSCDMA mode

AT+NETMODE=1

 

//Wait

WAIT=2

 

//Set for WCDMA mode

AT+NETMODE=2

?

?



Output of above script in AT Command Tester Tool.

AT+NETMODE=?

+NETMODE: (1,2)

OK

 

AT+NETMODE?

+NETMODE: 2

OK

 

AT+NETMODE=1

OK

 

AT+NETMODE=2

OK