AT Command

Description

This command refers to the GSM/UMTS supplementary service CLIP (Calling Line Identification Presentation) that enables a called subscriber to get the calling line identity (CLI) of the calling party when receiving a mobile terminated call. Set command enables or disables the presentation of the CLI at the TE.

Usage
Command Possible response(s)
+CLIP=[]
+CLIP? +CLIP: ,
+CLIP=? +CLIP: (list of supporteds)

Examples

AT+CLIP=1
OK

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


Test AT+CLIP command with AT Command Tester





Try this script included in AT Command Tester Tool.

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

//Script-at_clip.at

//Test AT+CLIP AT command

//AT+CLIP Calling line identificaiton presentation

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

 

//List of supported write values for AT+CLIP

AT+CLIP=?

 

//Get current settng for calling line identificaiton

// Response is in format +CLIP:<n>,<m>

//n - If +CLIP notificaiton is enabled or disabled

//m - If +CLIP is provisioned or not provisioned in network

AT+CLIP?

 

//WAIT for 1 sec

WAIT=2

 

//Enable +CLIP notification

AT+CLIP=1

 

//WAIT for 1 sec

WAIT=2

 

//confirm the setting

AT+CLIP?

 

//WAIT for 1 sec

WAIT=1

 

//Disable +CLIP notification

AT+CLIP=0

 

//WAIT for 1 sec

WAIT=2

 

//confirm the setting

AT+CLIP?

 

//WAIT for 1 sec

WAIT=1


Output of above script in AT Command Tester Tool.

AT+CLIP=?

+CLIP: (0,1)

 

OK

AT+CLIP?

+CLIP: 0,1

 

OK

AT+CLIP=1

OK

AT+CLIP?

+CLIP: 1,1

 

OK

AT+CLIP=0

OK

AT+CLIP?

+CLIP: 0,1

 

OK