#include <avr32/io.h>
#include "compiler.h"
#include "board.h"
#include "dsp.h"
#include "dsp_debug.h"
#include "pm.h"
#include "cycle_counter.h"
Macros | |
#define | FIR_COEF_SIZE 25 |
The number of tap. More... | |
#define | SIZE 64 |
The size of the input signal. More... | |
Functions | |
int | main (int argc, char *argv[]) |
The main function. More... | |
Variables | |
A_ALIGNED dsp16_t | fir_coef [FIR_COEF_SIZE] |
A_ALIGNED dsp16_t | x [SIZE] |
The input signal. More... | |
A_ALIGNED dsp16_t | y [SIZE-FIR_COEF_SIZE+1+4] |
The output buffer. More... | |
#define FIR_COEF_SIZE 25 |
The number of tap.
Referenced by main().
#define SIZE 64 |
The size of the input signal.
Referenced by main().
int main | ( | int | argc, |
char * | argv[] | ||
) |
The main function.
References dsp16_debug_print_vect(), dsp16_debug_printf(), dsp16_filt_fir(), dsp_debug_initialization, fir_coef, FIR_COEF_SIZE, FOSC0, Get_sys_count, OSC0_STARTUP, pm_switch_to_osc0(), SIZE, x, and y.
A_ALIGNED dsp16_t fir_coef[FIR_COEF_SIZE] |
Referenced by main().
The input signal.
Referenced by dsp16_op_exp(), dsp32_op_exp(), dsp32_op_sqrt(), and main().
A_ALIGNED dsp16_t y[SIZE-FIR_COEF_SIZE+1+4] |
The output buffer.
Referenced by dsp16_filt_iir(), dsp32_filt_lms(), dsp32_filt_nlms(), and main().