This file show a list of the signal generation functions currently implemented in the DSP library.
Definition in file dsp_signal_generation.h.
Go to the source code of this file.
Functions | |
dsp16_t | dsp16_gen_cos (dsp16_t *vect1, int size, int f, int fs, dsp16_t phase) |
16-bit fixed point version of the cosinusoidal signal generation. | |
void | dsp16_gen_dcomb (dsp16_t *vect1, int size, int f, int fs, dsp16_t delay) |
16-bit fixed point version of the dirac comb signal generation. | |
void | dsp16_gen_dirac (dsp16_t *vect1, int size, int dirac_index) |
16-bit fixed point version of the dirac comb signal generation. | |
void | dsp16_gen_noise (dsp16_t *vect1, int size, dsp16_t amp) |
16-bit fixed point version of the noise generation. | |
void | dsp16_gen_ramp (dsp16_t *vect1, int size, dsp16_t increment) |
16-bit fixed point version of the ramp signal generation. | |
void | dsp16_gen_rect (dsp16_t *vect1, int size, int f, int fs, dsp16_t duty, dsp16_t delay) |
16-bit fixed point version of the rectangular signal generation. | |
dsp16_t | dsp16_gen_saw (dsp16_t *vect1, int size, int f, int fs, dsp16_t duty, dsp16_t delay) |
16-bit fixed point version of the saw tooth signal generation. | |
dsp16_t | dsp16_gen_sin (dsp16_t *vect1, int size, int f, int fs, dsp16_t phase) |
16-bit fixed point version of the sinusoidal signal generation. | |
static void | dsp16_gen_sqr (dsp16_t *vect1, int size, int f, int fs, dsp16_t delay) |
16-bit fixed point version of the square signal generation. | |
void | dsp16_gen_step (dsp16_t *vect1, int size, dsp16_t intial_value, dsp16_t final_value, int step_index) |
16-bit fixed point version of the dirac comb signal generation. | |
dsp32_t | dsp32_gen_cos (dsp32_t *vect1, int size, int f, int fs, dsp32_t phase) |
32-bit fixed point version of the cosinusoidal signal generation. | |
void | dsp32_gen_dcomb (dsp32_t *vect1, int size, int f, int fs, dsp32_t delay) |
32-bit fixed point version of the dirac comb signal generation. | |
void | dsp32_gen_dirac (dsp32_t *vect1, int size, int dirac_index) |
32-bit fixed point version of the dirac comb signal generation. | |
void | dsp32_gen_noise (dsp32_t *vect1, int size, dsp32_t amp) |
32-bit fixed point version of the noise generation. | |
void | dsp32_gen_ramp (dsp32_t *vect1, int size, dsp32_t increment) |
32-bit fixed point version of the ramp signal generation. | |
void | dsp32_gen_rect (dsp32_t *vect1, int size, int f, int fs, dsp32_t duty, dsp32_t delay) |
32-bit fixed point version of the rectangular signal generation. | |
dsp32_t | dsp32_gen_saw (dsp32_t *vect1, int size, int f, int fs, dsp32_t duty, dsp32_t delay) |
32-bit fixed point version of the saw tooth signal generation. | |
dsp32_t | dsp32_gen_sin (dsp32_t *vect1, int size, int f, int fs, dsp32_t phase) |
32-bit fixed point version of the sinusoidal signal generation. | |
static void | dsp32_gen_sqr (dsp32_t *vect1, int size, int f, int fs, dsp32_t delay) |
32-bit fixed point version of the square signal generation. | |
void | dsp32_gen_step (dsp32_t *vect1, int size, dsp32_t intial_value, dsp32_t final_value, int step_index) |
32-bit fixed point version of the dirac comb signal generation. |