This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

VOLIB CID Problem

Hi,

I am using VOLIB in C5507 DSP and CID component gives an error for some patterns and does not detect caller ID.

The error is "cid_RPT_LONG_MARKS" from call-back function which states  ">20 consecutive marks encountered in message". What does it mean?

The problem occurs especially on SDMF(Single Data Message Format) CIDs. Is there any known issue for SDMF format?

Attached both the succesful and unsuccessful 8bit alaw vaw samples.

samples.rar

  • Hi,

    The problem seems that VOLIB ETSI allowed message types do not include 0x04 SDMF. When I set US - Telcordia detection control code, it can detect SDMF formats.

    Why does VOLIB CID not include SDMF for ETSI?

    Regards
    Ferhat
  • Ferhat,

    The CID module in the VOLIB complies with the following standards:

    • Bellcore Technical Reference TR-NWT-000031, issue 4, December 1992

    • Bellcore Special Report SR-3004, issue 2, January 1995

    • Bellcore Technical Reference TR-NWT-001188, issue 1, December 1991

    • Bellcore Generic Requirements GR-30-CORE, issue 1, December 1994

    • Bellcore Special Report SR-TSV-002476, issue 1, December 1992

    • Bell 212 A - Synchronous/ asynchronous data transmission, full-duplex operation over 2-wire leased or dialup lines; 1200-bps data rate

    • CLASSSM Feature: Calling Number Delivery

    • CLASSSM Feature: Calling Name Delivery Generic Requirements

    • LSSGR: Voiceband Data Transmission Interface Section 6.6

    • Customer Premises Equipment Compatibility Considerations for the Voiceband Data Transmission Interface

    • Testing Guidelines for Analog Type 1, 2, and 3 CPE as Described in SR-INS-002726

    • Subscriber line protocol over the local loop for display (and related) services, ETSI EN 300 659

    • YDN 069 - 1997, Chinese Caller ID Standard Draft

    • BT SIN 227, CDS Calling Line Identification Service

    • BT SIN 242, CDS Calling Line Identification Service

    • DC.002 Data Transmission to CPE for Presentation Features, Network Products Signaling, Interworking & Standards, Technical Reference - Analogue Supplementary Services, 4 June 1998.

    • Telephone Service Interfaces Edition 5 - Nippon Telegraph and Telephone Corporation (NTT)

    • ITU-T Recommendation V.23, 11-1988, 600/1200-baud modem standardized for use in the general switched telephone network

    In the control_code: /* 1 - US, 2- NTT, 3 - ETSI, 4 - YDN, 5 - BT 6 - AUS*/

    For the ETSI supports:

    /* ETSI allowed message types */
    #define cid_ETSI_CS_MSGTYPE   0x80 /**< Call Setup */
    #define cid_ETSI_MWI_MSGTYPE   0x82   /**< Message Waiting Indicator */
    #define cid_ETSI_AOC_MSGTYPE   0x86   /**< Advice of Charge */
    #define cid_ETSI_SMS_MSGTYPE   0x89   /**< Short Message Service */
    #define cid_ETSI_NOUMIN_MSGTYPE  0xf1   /**< Reserved for Network Operator Use */
    #define cid_ETSI_NOUMAX_MSGTYPE  0xff

    There is no support of SDMF message type. I am sorry I don't know why, this is the package we have and there is no further development work for this.

    Regards, Eric

  • Hi Eric,

    Thank you for your detailed answer. 

    Regards

    Ferhat