Skip to content

Commit

Permalink
Fix bug (#7)
Browse files Browse the repository at this point in the history
* Default to FFTW.MEASURE

* Fix bug
  • Loading branch information
zsoerenm authored Dec 18, 2022
1 parent 58aec5a commit 3fb4790
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Acquisition"
uuid = "d4bbf60b-102b-5ffb-8f97-a7ea5817e69f"
authors = ["Soeren Schoenbrod <[email protected]>"]
version = "0.0.6"
version = "0.1.0"

[deps]
DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
Expand Down
4 changes: 2 additions & 2 deletions src/acquire.jl
Original file line number Diff line number Diff line change
Expand Up @@ -115,15 +115,15 @@ end
function acquire!(
acq_plan::AcquisitionPlan,
signal,
prn;
prn::Integer;
interm_freq = 0.0Hz,
doppler_offset = 0.0Hz,
noise_power = nothing,
)
only(acquire!(acq_plan, signal, [prn]; interm_freq, doppler_offset, noise_power))
end

function acquire!(acq_plan::CoarseFineAcquisitionPlan, signal, prn; interm_freq = 0.0Hz)
function acquire!(acq_plan::CoarseFineAcquisitionPlan, signal, prn::Integer; interm_freq = 0.0Hz)
only(acquire!(acq_plan, signal, [prn]; interm_freq))
end

Expand Down

2 comments on commit 3fb4790

@zsoerenm
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/74320

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.1.0 -m "<description of version>" 3fb47906b34e99fe4f2ec5271163fa175363b64c
git push origin v0.1.0

Please sign in to comment.