MotorWare f2806x Module API Documentation
Functions
float/filter_fo.c File Reference

Portable C fixed point code. These functions define the first-order filter (FILTER) module routines. More...

#include "sw/modules/filter/src/float/filter_fo.h"

Go to the source code of this file.

Functions

void FILTER_FO_getDenCoeffs (FILTER_FO_Handle handle, float_t *pa1)
 Gets the first-order filter denominator coefficients. More...
 
void FILTER_FO_getInitialConditions (FILTER_FO_Handle handle, float_t *px1, float_t *py1)
 Gets the initial conditions of the first-order filter. More...
 
void FILTER_FO_getNumCoeffs (FILTER_FO_Handle handle, float_t *pb0, float_t *pb1)
 Gets the first-order filter numerator coefficients. More...
 
FILTER_FO_Handle FILTER_FO_init (void *pMemory, const size_t numBytes)
 Initializes the first-order filter. More...
 
void FILTER_FO_setDenCoeffs (FILTER_FO_Handle handle, const float_t a1)
 Sets the first-order filter denominator coefficients. More...
 
void FILTER_FO_setInitialConditions (FILTER_FO_Handle handle, const float_t x1, const float_t y1)
 Sets the initial conditions of the first-order filter. More...
 
void FILTER_FO_setNumCoeffs (FILTER_FO_Handle handle, const float_t b0, const float_t b1)
 Sets the first-order filter numerator coefficients. More...
 

Detailed Description

Portable C fixed point code. These functions define the first-order filter (FILTER) module routines.

(C) Copyright 2013, Texas Instruments, Inc.

Definition in file float/filter_fo.c.