Cargo Features
[dependencies]
real_time_fir_iir_filters = { version = "1.3.0", default-features = false, features = ["first_order_all_pass", "first_order", "first_order_lr", "first_order_rc", "pid", "second_order_butterworth", "second_order_chebyshev1", "second_order_chebyshev2", "second_order_chebyshev", "second_order_elliptic", "second_order", "second_order_rc", "second_order_rlc", "second_order_sallen_key", "third_order_butterworth", "third_order", "third_order_sallen_key", "wah", "butterworth", "chebyshev1", "chebyshev2", "chebyshev", "elliptic", "all_pass", "lr", "rc", "rlc", "sallen_key", "analog_passive", "analog_active", "analog", "parametric", "ideal"] }
- default = first_order, first_order_all_pass, first_order_lr, first_order_rc, pi, pid, second_order, second_order_butterworth, second_order_chebyshev1, second_order_chebyshev2, second_order_elliptic, second_order_rc, second_order_rlc, second_order_sallen_key, third_order, third_order_butterworth, third_order_sallen_key, wah
-
These default features are set whenever
real_time_fir_iir_filters
is added without
somewhere in the dependency tree.default-features = false - first_order_all_pass default all_pass?
- first_order default butterworth? parametric?
- first_order_lr default lr?
- first_order_rc default rc?
- pi pid default
- second_order_butterworth default butterworth?
- second_order_chebyshev1 default chebyshev1? second_order_chebyshev?
- second_order_chebyshev2 default chebyshev2? second_order_chebyshev?
- second_order_chebyshev chebyshev? = second_order_chebyshev1, second_order_chebyshev2
- second_order_elliptic default elliptic?
- second_order default parametric?
- second_order_rc default rc?
- second_order_rlc default rlc?
- second_order_sallen_key default sallen_key?
- third_order_butterworth default butterworth?
- third_order default parametric?
- third_order_sallen_key default sallen_key?
- wah default analog_active?
- butterworth ideal? = first_order, second_order_butterworth, third_order_butterworth
- chebyshev1 chebyshev? = second_order_chebyshev1
- chebyshev2 chebyshev? = second_order_chebyshev2
- chebyshev ideal? = chebyshev1, chebyshev2, second_order_chebyshev
- elliptic ideal? = second_order_elliptic
- all_pass ideal? = first_order_all_pass
- lr analog_passive? = first_order_lr
- rc analog_passive? = first_order_rc, second_order_rc
- rlc analog_passive? = second_order_rlc
- sallen_key analog_active? = second_order_sallen_key, third_order_sallen_key
- analog_passive analog? = lr, rc, rlc
- analog_active analog? = sallen_key, wah
- analog = analog_active, analog_passive
- parametric ideal? = first_order, second_order, third_order
- ideal = all_pass, butterworth, chebyshev, elliptic, parametric
real_time_fir_iir_filters has 34 features without comments.