From 965c6335e11a38251f30fa096b566614b94ca663 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20J=C3=B6rdens?= Date: Mon, 1 Feb 2021 12:40:12 +0100 Subject: [PATCH] dsp: fmt --- dsp/src/lockin.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dsp/src/lockin.rs b/dsp/src/lockin.rs index 61627cf..775398d 100644 --- a/dsp/src/lockin.rs +++ b/dsp/src/lockin.rs @@ -14,7 +14,10 @@ impl Lockin { /// Create a new Lockin with given IIR coefficients. pub fn new(ba: Vec5) -> Self { Self { - iir: IIR { ba, ..Default::default() }, + iir: IIR { + ba, + ..Default::default() + }, state: [Vec5::default(); 2], } }