Real Time FIR Filter - Distinctive Excellence award winner :)

Dependencies:   mbed

Committer:
Gonzakpo
Date:
Sat Aug 13 17:35:52 2011 +0000
Revision:
0:b3e50e98acac

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Gonzakpo 0:b3e50e98acac 1 /*****************************************************************************
Gonzakpo 0:b3e50e98acac 2 * $Id:: cr_dsplib.h 3698 2010-06-10 23:29:17Z nxp27266 $
Gonzakpo 0:b3e50e98acac 3 *
Gonzakpo 0:b3e50e98acac 4 * Project: NXP LPC1000 Cortex-M3 family DSP library
Gonzakpo 0:b3e50e98acac 5 *
Gonzakpo 0:b3e50e98acac 6 * Description: Definition of DSP Library API
Gonzakpo 0:b3e50e98acac 7 *
Gonzakpo 0:b3e50e98acac 8 * Copyright(C) 2010, NXP Semiconductor
Gonzakpo 0:b3e50e98acac 9 * All rights reserved.
Gonzakpo 0:b3e50e98acac 10 *
Gonzakpo 0:b3e50e98acac 11 * Developed for NXP by Code Red Technologies Inc. www.code-red-tech.com
Gonzakpo 0:b3e50e98acac 12 *
Gonzakpo 0:b3e50e98acac 13 * Trimmed down and modified by Gonzalo Brusco.
Gonzakpo 0:b3e50e98acac 14 *
Gonzakpo 0:b3e50e98acac 15 *****************************************************************************
Gonzakpo 0:b3e50e98acac 16 * Software that is described herein is for illustrative purposes only
Gonzakpo 0:b3e50e98acac 17 * which provides customers with programming information regarding the
Gonzakpo 0:b3e50e98acac 18 * products. This software is supplied "AS IS" without any warranties.
Gonzakpo 0:b3e50e98acac 19 * NXP Semiconductors assumes no responsibility or liability for the
Gonzakpo 0:b3e50e98acac 20 * use of the software, conveys no license or title under any patent,
Gonzakpo 0:b3e50e98acac 21 * copyright, or mask work right to the product. NXP Semiconductors
Gonzakpo 0:b3e50e98acac 22 * reserves the right to make changes in the software without
Gonzakpo 0:b3e50e98acac 23 * notification. NXP Semiconductors also make no representation or
Gonzakpo 0:b3e50e98acac 24 * warranty that such application will be suitable for the specified
Gonzakpo 0:b3e50e98acac 25 * use without further testing or modification.
Gonzakpo 0:b3e50e98acac 26 *****************************************************************************/
Gonzakpo 0:b3e50e98acac 27 #ifndef CR_DSPLIB_H_
Gonzakpo 0:b3e50e98acac 28 #define CR_DSPLIB_H_
Gonzakpo 0:b3e50e98acac 29
Gonzakpo 0:b3e50e98acac 30 typedef struct
Gonzakpo 0:b3e50e98acac 31 {
Gonzakpo 0:b3e50e98acac 32 int *pi_Coeff;
Gonzakpo 0:b3e50e98acac 33 int NTaps;
Gonzakpo 0:b3e50e98acac 34 }tS_blockfir32_Coeff;
Gonzakpo 0:b3e50e98acac 35
Gonzakpo 0:b3e50e98acac 36 extern "C" void vF_dspl_blockfir32(int *pi_y, int *pi_x, tS_blockfir32_Coeff *pS_Coeff, int i_nsamples);
Gonzakpo 0:b3e50e98acac 37
Gonzakpo 0:b3e50e98acac 38 #endif /*CR_DSPLIB_H_*/
Gonzakpo 0:b3e50e98acac 39
Gonzakpo 0:b3e50e98acac 40 /*****************************************************************************
Gonzakpo 0:b3e50e98acac 41 ** End Of File
Gonzakpo 0:b3e50e98acac 42 *****************************************************************************/