Paparazzi UAS
v7.0_unstable
Paparazzi is a free software Unmanned Aircraft System.
|
#include "std.h"
Go to the source code of this file.
Data Structures | |
struct | SecondOrderNotchFilter |
Functions | |
static void | notch_filter_set_sampling_frequency (struct SecondOrderNotchFilter *filter, uint16_t frequency) |
Set sampling frequency of the notch filter. More... | |
static void | notch_filter_set_bandwidth (struct SecondOrderNotchFilter *filter, float bandwidth) |
Set bandwidth of the notch filter. More... | |
static void | notch_filter_set_filter_frequency (struct SecondOrderNotchFilter *filter, float frequency) |
Set notch filter frequency in Hz. More... | |
static void | notch_filter_update (struct SecondOrderNotchFilter *filter, float *input_signal, float *output_signal) |
Notch filter propagate. More... | |
static float | notch_filter_get_output (struct SecondOrderNotchFilter *filter) |
Get notch filter output. More... | |
static void | notch_filter_init (struct SecondOrderNotchFilter *filter, float cutoff_frequency, float bandwidth, uint16_t sample_frequency) |
Initialize second order notch filter. More... | |
struct SecondOrderNotchFilter |
|
inlinestatic |
Get notch filter output.
filter | SecondOrderNotchFilter data |
Definition at line 104 of file notch_filter_float.h.
References SecondOrderNotchFilter::yn1.
|
inlinestatic |
Initialize second order notch filter.
Discrete implementation: y[n] = b * y[n-1] - d^2 * y[n-2] + a * x[n] - b * x[n-1] + a * x[n-2]
filter | SecondOrderNotchFilter data |
cutoff_frequency | frequency to attenuate [Hz] |
bandwidth | bandwidth of the filter [Hz] |
sample_frequency | frequency at which the filter is updated |
Definition at line 121 of file notch_filter_float.h.
References notch_filter_set_bandwidth(), notch_filter_set_filter_frequency(), notch_filter_set_sampling_frequency(), SecondOrderNotchFilter::xn1, SecondOrderNotchFilter::xn2, SecondOrderNotchFilter::yn1, and SecondOrderNotchFilter::yn2.
|
inlinestatic |
Set bandwidth of the notch filter.
filter | SecondOrderNotchFilter data |
bandwidth | bandwidth of the filter [Hz] |
Definition at line 57 of file notch_filter_float.h.
References SecondOrderNotchFilter::d2, and SecondOrderNotchFilter::Ts.
Referenced by notch_filter_init().
|
inlinestatic |
Set notch filter frequency in Hz.
filter | SecondOrderNotchFilter data |
frequency | to attenuate [Hz] |
Definition at line 68 of file notch_filter_float.h.
References SecondOrderNotchFilter::costheta, and SecondOrderNotchFilter::Ts.
Referenced by notch_filter_init().
|
inlinestatic |
Set sampling frequency of the notch filter.
filter | SecondOrderNotchFilter data |
frequency | frequency at which the filter is updated |
Definition at line 47 of file notch_filter_float.h.
References SecondOrderNotchFilter::Ts.
Referenced by notch_filter_init().
|
inlinestatic |
Notch filter propagate.
Discrete implementation: y[n] = b * y[n-1] - d^2 * y[n-2] + a * x[n] - b * x[n-1] + a * x[n-2]
filter | SecondOrderNotchFilter data |
input_signal | input x[n] |
output_signal | output y[n] |
Definition at line 83 of file notch_filter_float.h.
References b, SecondOrderNotchFilter::costheta, SecondOrderNotchFilter::d2, SecondOrderNotchFilter::xn1, SecondOrderNotchFilter::xn2, SecondOrderNotchFilter::yn1, and SecondOrderNotchFilter::yn2.