From c2d0afdb4fa5bd60286e62b187f380e8ff5d33eb Mon Sep 17 00:00:00 2001 From: Soeren Schoenbrod Date: Tue, 18 Jan 2022 10:43:49 +0100 Subject: [PATCH] Fix errors in Readme and bump version --- Project.toml | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Project.toml b/Project.toml index 9bba08e..3502417 100644 --- a/Project.toml +++ b/Project.toml @@ -2,7 +2,7 @@ name = "Tracking" uuid = "10b2438b-ffd4-5096-aa58-44041d5c8f3b" authors = ["Soeren Schoenbrod ", "Michael Niestroj "] -version = "0.14.9" +version = "0.14.10" [deps] CUDA = "052768ef-5323-5732-b1bb-66c8b64840ba" diff --git a/README.md b/README.md index 02b83eb..ca11d26 100644 --- a/README.md +++ b/README.md @@ -42,8 +42,8 @@ next_results = track(next_signal, get_state(results), sampling_frequency) If you'd like to track several signals at once (e.g. in the case of phased antenna arrays), you will have to specify the optional parameter `num_ants::NumAnts{N}` and pass a beamforming function to the `track` function: ```julia -state = TrackingState(GPSL1, carrier_doppler, code_phase, num_ants = NumAnts(4)) # 4 antenna channels -results = track(signal, state, prn, sampling_frequency, post_corr_filter = x -> x[1]) # Post corr filter is optional +state = TrackingState(prn, gpsl1, carrier_doppler, code_phase, num_ants = NumAnts(4)) # 4 antenna channels +results = track(signal, state, sampling_frequency, post_corr_filter = x -> x[1]) # Post corr filter is optional ``` ### Usage with `CUDA.jl`