We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
Hi,Why does Keil drop 'const' in 'const q7_t * pCoeffs' in CMSIS/DSP/arm_fir_init_q7 () ? I want my coefficients to be 'const(expr)'.
CMSIS defines arm_fir_init_q7() like this:void arm_fir_init_q7( arm_fir_instance_q7 * S , uint16_t numTaps , const q7_t * pCoeffs , // 'const' here, +1 q7_t * pState , uint32_t blockSize)github.com/.../arm_fir_init_q7.cKeil declaration of arm_fir_init_q7() in arm_math.h is:void arm_fir_init_q7( arm_fir_instance_q7 * S , uint16_t numTaps , q7_t * pCoeffs , // Where is 'const' ? q7_t * pState , uint32_t blockSize)C:\Keil_v5\ARM\CMSIS\Include\arm_math.hI use uVision V5.33 / armClang V6.15Thanks