Merge pull request #213 from matthuszagh/pll
pll update input is named "x" not "input"
This commit is contained in:
commit
e831c7b11f
|
@ -29,6 +29,7 @@ jobs:
|
|||
- uses: actions-rs/clippy-check@v1
|
||||
continue-on-error: true
|
||||
with:
|
||||
toolchain: stable
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
compile:
|
||||
|
|
|
@ -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)`
|
||||
|
|
Loading…
Reference in New Issue