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.

gsm.h Intrinsics not compatible with DSP Library dsplib.h?



I just wondered why this two header files are not compatible.

Is that with intent and you guys cut everything out from it what you need?

for example add() is defined in both

  • Steffen,

    The gsm.h has the following description:

    /* Definitions for the Basic DSP Operations defined by the European         */
    /* Telecommunications Standards Institute (ETSI).                           */

    These are protocol specific.  The DSPLIB are generic DSP algorithms.  Both happen to have add() function defined.  If you are developing GSM code and also want to use the DSPLIB, then you will need to customize DSPLIB to remove the conflicts.  The GSM protocol definitions are requirements which must be used.

    Regards.

  • Ok thx for the information about the GSM protocol. I see, the compiler intrinsics are usable without gsm.h ;-)