|
Try this script included in AT Command Tester Tool.
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//Script-at_cbst.at
//Test AT+CBST AT command
//AT+CBST command is used to select bearer service type
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//List of supported responses
//TA selects the bearer service <name> with data rate <speed>,
//and the connection element <ce> to be used when data calls are originated.
AT+CBST=?
//WAIT for 1 sec
WAIT=1
//Query the current setting
AT+CBST?
//WAIT for 1 sec
WAIT=1
//Speed - 9600,name - Data circuit asynchronous (UDI), connection elecment is non-transparent
AT+CBST=71,0,1
//WAIT for 1 sec
WAIT=1
//Query to check our settings
AT+CBST?
//WAIT for 1 sec
WAIT=1
Output of above script in AT Command Tester Tool.
AT+CBST=?
+CBST: (0,7,12,14,16,17,39,43,48,51,71,75,80,81,83,84,116,134),(0,1,4),(0,1)
OK
AT+CBST?
+CBST: 0,0,1
OK
Speed ->autobauding
Bearer Service -> Data circuit asynchronous
Connection Element -> Non transparent
AT+CBST=71,0,1
OK
AT+CBST?
+CBST: 71,0,1
OK
Speed -> 71
Bearer Service -> Data circuit asynchronous
Connection Element -> Non transparent