CMSIS DSP library

Dependents:   KL25Z_FFT_Demo Hat_Board_v5_1 KL25Z_FFT_Demo_tony KL25Z_FFT_Demo_tony ... more

Fork of mbed-dsp by mbed official

Committer:
emilmont
Date:
Thu May 30 17:10:11 2013 +0100
Revision:
2:da51fb522205
Parent:
1:fdd22bb7aa52
Child:
3:7a284390b0ce
Keep "cmsis-dsp" module in synch with its source

Who changed what in which revision?

UserRevisionLine numberNew contents of line
emilmont 1:fdd22bb7aa52 1 /*-----------------------------------------------------------------------------
emilmont 1:fdd22bb7aa52 2 * Copyright (C) 2010 ARM Limited. All rights reserved.
emilmont 1:fdd22bb7aa52 3 *
emilmont 1:fdd22bb7aa52 4 * $Date: 15. February 2012
emilmont 2:da51fb522205 5 * $Revision: V1.1.0
emilmont 1:fdd22bb7aa52 6 *
emilmont 2:da51fb522205 7 * Project: CMSIS DSP Library
emilmont 1:fdd22bb7aa52 8 * Title: arm_fir_interpolate_init_q15.c
emilmont 1:fdd22bb7aa52 9 *
emilmont 1:fdd22bb7aa52 10 * Description: Q15 FIR interpolator initialization function
emilmont 1:fdd22bb7aa52 11 *
emilmont 1:fdd22bb7aa52 12 * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0
emilmont 1:fdd22bb7aa52 13 *
emilmont 1:fdd22bb7aa52 14 * Version 1.1.0 2012/02/15
emilmont 1:fdd22bb7aa52 15 * Updated with more optimizations, bug fixes and minor API changes.
emilmont 1:fdd22bb7aa52 16 *
emilmont 1:fdd22bb7aa52 17 * Version 1.0.10 2011/7/15
emilmont 1:fdd22bb7aa52 18 * Big Endian support added and Merged M0 and M3/M4 Source code.
emilmont 1:fdd22bb7aa52 19 *
emilmont 1:fdd22bb7aa52 20 * Version 1.0.3 2010/11/29
emilmont 1:fdd22bb7aa52 21 * Re-organized the CMSIS folders and updated documentation.
emilmont 1:fdd22bb7aa52 22 *
emilmont 1:fdd22bb7aa52 23 * Version 1.0.2 2010/11/11
emilmont 1:fdd22bb7aa52 24 * Documentation updated.
emilmont 1:fdd22bb7aa52 25 *
emilmont 1:fdd22bb7aa52 26 * Version 1.0.1 2010/10/05
emilmont 1:fdd22bb7aa52 27 * Production release and review comments incorporated.
emilmont 1:fdd22bb7aa52 28 *
emilmont 1:fdd22bb7aa52 29 * Version 1.0.0 2010/09/20
emilmont 1:fdd22bb7aa52 30 * Production release and review comments incorporated
emilmont 1:fdd22bb7aa52 31 *
emilmont 1:fdd22bb7aa52 32 * Version 0.0.7 2010/06/10
emilmont 1:fdd22bb7aa52 33 * Misra-C changes done
emilmont 1:fdd22bb7aa52 34 * ---------------------------------------------------------------------------*/
emilmont 1:fdd22bb7aa52 35
emilmont 1:fdd22bb7aa52 36 #include "arm_math.h"
emilmont 1:fdd22bb7aa52 37
emilmont 1:fdd22bb7aa52 38 /**
emilmont 1:fdd22bb7aa52 39 * @ingroup groupFilters
emilmont 1:fdd22bb7aa52 40 */
emilmont 1:fdd22bb7aa52 41
emilmont 1:fdd22bb7aa52 42 /**
emilmont 1:fdd22bb7aa52 43 * @addtogroup FIR_Interpolate
emilmont 1:fdd22bb7aa52 44 * @{
emilmont 1:fdd22bb7aa52 45 */
emilmont 1:fdd22bb7aa52 46
emilmont 1:fdd22bb7aa52 47 /**
emilmont 1:fdd22bb7aa52 48 * @brief Initialization function for the Q15 FIR interpolator.
emilmont 1:fdd22bb7aa52 49 * @param[in,out] *S points to an instance of the Q15 FIR interpolator structure.
emilmont 1:fdd22bb7aa52 50 * @param[in] L upsample factor.
emilmont 1:fdd22bb7aa52 51 * @param[in] numTaps number of filter coefficients in the filter.
emilmont 1:fdd22bb7aa52 52 * @param[in] *pCoeffs points to the filter coefficient buffer.
emilmont 1:fdd22bb7aa52 53 * @param[in] *pState points to the state buffer.
emilmont 1:fdd22bb7aa52 54 * @param[in] blockSize number of input samples to process per call.
emilmont 1:fdd22bb7aa52 55 * @return The function returns ARM_MATH_SUCCESS if initialization was successful or ARM_MATH_LENGTH_ERROR if
emilmont 1:fdd22bb7aa52 56 * the filter length <code>numTaps</code> is not a multiple of the interpolation factor <code>L</code>.
emilmont 1:fdd22bb7aa52 57 *
emilmont 1:fdd22bb7aa52 58 * <b>Description:</b>
emilmont 1:fdd22bb7aa52 59 * \par
emilmont 1:fdd22bb7aa52 60 * <code>pCoeffs</code> points to the array of filter coefficients stored in time reversed order:
emilmont 1:fdd22bb7aa52 61 * <pre>
emilmont 1:fdd22bb7aa52 62 * {b[numTaps-1], b[numTaps-2], b[numTaps-2], ..., b[1], b[0]}
emilmont 1:fdd22bb7aa52 63 * </pre>
emilmont 1:fdd22bb7aa52 64 * The length of the filter <code>numTaps</code> must be a multiple of the interpolation factor <code>L</code>.
emilmont 1:fdd22bb7aa52 65 * \par
emilmont 1:fdd22bb7aa52 66 * <code>pState</code> points to the array of state variables.
emilmont 1:fdd22bb7aa52 67 * <code>pState</code> is of length <code>(numTaps/L)+blockSize-1</code> words
emilmont 1:fdd22bb7aa52 68 * where <code>blockSize</code> is the number of input samples processed by each call to <code>arm_fir_interpolate_q15()</code>.
emilmont 1:fdd22bb7aa52 69 */
emilmont 1:fdd22bb7aa52 70
emilmont 1:fdd22bb7aa52 71 arm_status arm_fir_interpolate_init_q15(
emilmont 1:fdd22bb7aa52 72 arm_fir_interpolate_instance_q15 * S,
emilmont 1:fdd22bb7aa52 73 uint8_t L,
emilmont 1:fdd22bb7aa52 74 uint16_t numTaps,
emilmont 1:fdd22bb7aa52 75 q15_t * pCoeffs,
emilmont 1:fdd22bb7aa52 76 q15_t * pState,
emilmont 1:fdd22bb7aa52 77 uint32_t blockSize)
emilmont 1:fdd22bb7aa52 78 {
emilmont 1:fdd22bb7aa52 79 arm_status status;
emilmont 1:fdd22bb7aa52 80
emilmont 1:fdd22bb7aa52 81 /* The filter length must be a multiple of the interpolation factor */
emilmont 1:fdd22bb7aa52 82 if((numTaps % L) != 0u)
emilmont 1:fdd22bb7aa52 83 {
emilmont 1:fdd22bb7aa52 84 /* Set status as ARM_MATH_LENGTH_ERROR */
emilmont 1:fdd22bb7aa52 85 status = ARM_MATH_LENGTH_ERROR;
emilmont 1:fdd22bb7aa52 86 }
emilmont 1:fdd22bb7aa52 87 else
emilmont 1:fdd22bb7aa52 88 {
emilmont 1:fdd22bb7aa52 89
emilmont 1:fdd22bb7aa52 90 /* Assign coefficient pointer */
emilmont 1:fdd22bb7aa52 91 S->pCoeffs = pCoeffs;
emilmont 1:fdd22bb7aa52 92
emilmont 1:fdd22bb7aa52 93 /* Assign Interpolation factor */
emilmont 1:fdd22bb7aa52 94 S->L = L;
emilmont 1:fdd22bb7aa52 95
emilmont 1:fdd22bb7aa52 96 /* Assign polyPhaseLength */
emilmont 1:fdd22bb7aa52 97 S->phaseLength = numTaps / L;
emilmont 1:fdd22bb7aa52 98
emilmont 1:fdd22bb7aa52 99 /* Clear state buffer and size of buffer is always phaseLength + blockSize - 1 */
emilmont 1:fdd22bb7aa52 100 memset(pState, 0,
emilmont 1:fdd22bb7aa52 101 (blockSize + ((uint32_t) S->phaseLength - 1u)) * sizeof(q15_t));
emilmont 1:fdd22bb7aa52 102
emilmont 1:fdd22bb7aa52 103 /* Assign state pointer */
emilmont 1:fdd22bb7aa52 104 S->pState = pState;
emilmont 1:fdd22bb7aa52 105
emilmont 1:fdd22bb7aa52 106 status = ARM_MATH_SUCCESS;
emilmont 1:fdd22bb7aa52 107 }
emilmont 1:fdd22bb7aa52 108
emilmont 1:fdd22bb7aa52 109 return (status);
emilmont 1:fdd22bb7aa52 110
emilmont 1:fdd22bb7aa52 111 }
emilmont 1:fdd22bb7aa52 112
emilmont 1:fdd22bb7aa52 113 /**
emilmont 1:fdd22bb7aa52 114 * @} end of FIR_Interpolate group
emilmont 1:fdd22bb7aa52 115 */