From 13543ce048c9b0c8f63bfc3a15a9f7e48bc9c24a Mon Sep 17 00:00:00 2001 From: Matt Huszagh Date: Mon, 4 Jan 2021 11:14:27 -0800 Subject: [PATCH 1/2] pll update input is named "x" not "input" --- dsp/src/pll.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dsp/src/pll.rs b/dsp/src/pll.rs index 74377f3..8df750f 100644 --- a/dsp/src/pll.rs +++ b/dsp/src/pll.rs @@ -45,7 +45,7 @@ impl PLL { /// The signal's phase/frequency is reconstructed relative to the sampling period. /// /// Args: - /// * `input`: New input phase sample. + /// * `x`: New input phase sample. /// * `shift_frequency`: Frequency error scaling. The frequency gain per update is /// `1/(1 << shift_frequency)`. /// * `shift_phase`: Phase error scaling. The phase gain is `1/(1 << shift_phase)` From a3cd17fd70031549fcf891208c4bd29914b72421 Mon Sep 17 00:00:00 2001 From: Matt Huszagh Date: Mon, 4 Jan 2021 16:37:46 -0800 Subject: [PATCH 2/2] pin clippy to stable --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d0ea705..e8e0e4e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,6 +29,7 @@ jobs: - uses: actions-rs/clippy-check@v1 continue-on-error: true with: + toolchain: stable token: ${{ secrets.GITHUB_TOKEN }} compile: