Microchip® Advanced Software Framework

vect_dsp16_max.c File Reference
#include "dsp.h"
#include "preprocessor.h"

Macros

#define DSP16_MAX_KERNEL_X_FCT(x_num, data)
 
#define DSP16_MAXIMUM(x_num, data)
 

Functions

dsp16_t dsp16_vect_max (dsp16_t *vect1, int size)
 16-bit fixed point version of the vector maximum function. More...
 

#define DSP16_MAX_KERNEL_X_FCT (   x_num,
  data 
)
Value:
static dsp16_t TPASTE2(dsp16_vect_max_kernel_x, x_num)(dsp16_t *vect1, dsp16_t max) \
{ \
MREPEAT(x_num, DSP16_MAXIMUM, ""); \
return max; \
}
#define DSP16_MAXIMUM(x_num, data)
Definition: vect_dsp16_max.c:46
A_ALIGNED dsp32_t vect1[VECT1_SIZE]
Definition: vectors_example.c:89
#define MREPEAT(count, macro, data)
Macro repeat.
Definition: mrepeat.h:67
dsp16_t__ dsp16_t
16-bit signed fixed point type optimized for 32-bit or lower microcontrollers
Definition: dsp_types.h:192
#define TPASTE2(a, b)
Definition: tpaste.h:61
#define max(a, b)
Takes the maximal value of a and b.
Definition: compiler.h:869
#define DSP16_MAXIMUM (   x_num,
  data 
)
Value:
if (max < vect1[x_num]) \
max = vect1[x_num];
A_ALIGNED dsp32_t vect1[VECT1_SIZE]
Definition: vectors_example.c:89
#define max(a, b)
Takes the maximal value of a and b.
Definition: compiler.h:869

Referenced by dsp16_vect_max().