Microchip® Advanced Software Framework

iir_example.c File Reference
#include <avr32/io.h>
#include "compiler.h"
#include "board.h"
#include "dsp.h"
#include "dsp_debug.h"
#include "pm.h"

Macros

#define DEN_PREDIV   3
 
#define DEN_SIZE   5
 
#define NUM_PREDIV   3
 
#define NUM_SIZE   6
 
#define SIZE   48
 The size of the input signal. More...
 

Functions

int main (int argc, char *argv[])
 The main function. More...
 

Variables

A_ALIGNED dsp32_t den [DEN_SIZE]
 
A_ALIGNED dsp32_t num [NUM_SIZE]
 
A_ALIGNED dsp32_t x [SIZE+NUM_SIZE-1]
 The input signal (sampling rate: 48KHz) A mix between a 4000 Hz and a 1000 Hz signal (mixed by addition) More...
 
A_ALIGNED dsp32_t y [SIZE+DEN_SIZE]
 The output buffer. More...
 

#define DEN_PREDIV   3

Referenced by main().

#define DEN_SIZE   5

Referenced by main().

#define NUM_PREDIV   3

Referenced by main().

#define NUM_SIZE   6

Referenced by main().

#define SIZE   48

The size of the input signal.

Referenced by main().

int main ( int  argc,
char *  argv[] 
)

Initial value:
= {
DSP32_Q(-4.1534907 / (1 << DEN_PREDIV)),
DSP32_Q(6.9612765 / (1 << DEN_PREDIV)),
DSP32_Q(-5.877997 / (1 << DEN_PREDIV)),
DSP32_Q(2.498365 / (1 << DEN_PREDIV)),
}
#define DSP32_Q(fnum)
Convert a float into a 32-bit signed fixed-point type.
Definition: dsp_types.h:294
#define DEN_PREDIV
Definition: iir_example.c:91

Referenced by dsp16_filt_iir(), dsp16_filt_iirpart(), dsp16_op_div(), dsp32_op_div(), dsp_debug_sprint_after_radix(), and main().

Initial value:
= {
DSP32_Q(0.6537018 / (1 << NUM_PREDIV)),
DSP32_Q(-3.2685088 / (1 << NUM_PREDIV)),
DSP32_Q(6.5370176 / (1 << NUM_PREDIV)),
DSP32_Q(-6.5370176 / (1 << NUM_PREDIV)),
DSP32_Q(3.2685088 / (1 << NUM_PREDIV)),
}
#define DSP32_Q(fnum)
Convert a float into a 32-bit signed fixed-point type.
Definition: dsp_types.h:294
#define NUM_PREDIV
Definition: iir_example.c:89

Referenced by dsp16_filt_iir(), dsp16_filt_iirpart(), dsp16_filt_lpfirdesign(), dsp16_op_asin(), dsp16_op_ln(), dsp16_op_log10(), dsp16_op_log2(), dsp16_op_pow(), dsp32_op_asin(), dsp32_op_ln(), dsp32_op_ln_raw(), dsp32_op_log10(), dsp32_op_log2(), dsp32_op_pow(), dsp32_op_sqrt(), and main().

The input signal (sampling rate: 48KHz) A mix between a 4000 Hz and a 1000 Hz signal (mixed by addition)

Referenced by dsp16_op_exp(), dsp32_op_exp(), dsp32_op_sqrt(), and main().

Initial value:
= {
}

The output buffer.

Referenced by dsp16_filt_iir(), dsp32_filt_lms(), dsp32_filt_nlms(), and main().