lowpass.h
393 Bytes
/***************************************************************
*
* lowpass.h
* the low-pass function header
*
* 1/3/95 bfs initial version
*
*/
#pragma once
#ifndef __LOWPASS_H
#define __LOWPASS_H
/* exported data types */
struct lp_info {
float coef;
float in_data;
float out_data;
};
/******* exported prototypes *********/
float low_pass_filter(struct lp_info*);
#endif