Skip to content

Commit

Permalink
Minor update to make python config_fa API uniform
Browse files Browse the repository at this point in the history
Signed-off-by: spagadar <[email protected]>
  • Loading branch information
SrikanthPagadarai committed Jul 11, 2024
1 parent 466dc8b commit 399d2ce
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bindings/python/examples/do_fourier_analysis_pluto_auto.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
genalyzer.config_set_sample_rate(data["fs"], c)

# Find tones
genalyzer.gn_config_fa_auto(ssb_width=120, c=c)
genalyzer.config_fa_auto(ssb_width=120, c=c)

# compute FFT
fft_out_i, fft_out_q = genalyzer.fftz(qwfi, qwfq, c)
Expand Down
2 changes: 1 addition & 1 deletion bindings/python/genalyzer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
config_histz_nla,
config_fftz,
config_fa,
gn_config_fa_auto,
config_fa_auto,
gen_ramp,
gen_real_tone,
gen_complex_tone,
Expand Down
2 changes: 1 addition & 1 deletion bindings/python/genalyzer/simplified.py
Original file line number Diff line number Diff line change
Expand Up @@ -614,7 +614,7 @@ def config_fa(fixed_tone_freq: float, c: GNConfig = None) -> GNConfig:
return c


def gn_config_fa_auto(ssb_width: int, c: GNConfig = None):
def config_fa_auto(ssb_width: int, c: GNConfig = None):
"""Configure GNConfig struct for Fourier analysis where tones are
automatically found.
:param ssb_width: SSB width
Expand Down

0 comments on commit 399d2ce

Please sign in to comment.