BG96 RING pin when SMS arrive

Hello,
I work with a BG96 modem (I also owm a EG91).
I can send and read SMS. But I would like the pin RING to be activated when a new SMS arrives.
The RING pin is only activated when the modem is configured on power-up. But I never get a pulse when I receive an SMS.

Here is my configuration:

	modemSendAtCommand("AT+QURCCFG = “urcport”, “uart1”, buffer, sizeof(buffer));

	//Message Format = Text mode
	modemSendAtCommand(‘AT+CMGF=1\r’, buffer, sizeof(buffer));


	//Set character set as GSM which is used by the TE
	modemSendAtCommand(‘AT+CSCS=’GSM‘\r’, buffer, sizeof(buffer));


	//SMS Event Reporting Configuration
	modemSendAtCommand(‘AT+CNMI=2,1\r’, buffer, sizeof(buffer));

	modemSendAtCommand(‘AT+QINDCFG=’smsincoming‘,1,0\r’, buffer, sizeof(buffer));

	modemSendAtCommand(‘AT+CMGL=’all\‘\r’, buffer, sizeof(buffer));

kr
Pierre

Finally it works. I don’t know why I hadn’t measure a signal on the RING pin. I also tested on the EG91 model

This question is Solved.