Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version 2.0 from develop branch #91

Merged
merged 25 commits into from
Mar 6, 2024
Merged
Changes from 3 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
cb33149
Remove deprecated functions, templatize, Speedup
Feb 19, 2020
08e9288
Fix example FFT_02
Feb 19, 2020
49bc726
Add windowing compensation factors
Feb 19, 2020
6df8d2d
Add missing include if compiled from Visual Studio Code + Arduino Ext…
Feb 20, 2020
3e73c98
Use better sqrtf approximation (precise, no divisions)
Feb 22, 2020
4a36bd2
Add setArrays() function because of issue #32. Add API migration info…
Feb 22, 2020
35ea7e2
Fix README anchor
Feb 22, 2020
0a9cd2b
Fix compile error on Arduino due to small_type
Jul 1, 2020
5eaad08
Merge pull request #50 from HorstBaerbel/master
kosme Jul 2, 2020
7b107cf
Fixed compilation with -Wextra
drzony Nov 6, 2020
3fce8ac
Reordered variables in class to fix -Werror=reorder
blaz-r Sep 13, 2021
e7357cc
Merge pull request #59 from drzony/reordering-fix
kosme Nov 27, 2021
5f622f7
Merge branch 'develop' into develop
kosme Nov 27, 2021
bd164d1
Merge pull request #68 from blaz-r/develop
kosme Nov 27, 2021
11b1571
Correctly detect ESP32 boards
kosme Sep 26, 2022
8c925a7
Correctly detect ESP32 boards
kosme Sep 26, 2022
0565c88
Merge branch 'develop' of github.com:kosme/arduinoFFT into develop
kosme Sep 26, 2022
3a637a1
Merge branch 'develop' of github.com:kosme/arduinoFFT into develop
kosme Sep 26, 2022
32723c6
Merge branch 'develop' of github.com:kosme/arduinoFFT into develop
kosme Sep 26, 2022
81d62e1
Delete arduinoFFT.cpp
kosme Sep 26, 2022
e5e4c74
Delete lookup-table.ods
kosme Sep 26, 2022
5c652cd
Make the sqrt_internal macro customisable
FintasticMan Apr 3, 2023
419d7b0
Merge pull request #83 from FintasticMan/customisable_sqrt
kosme May 26, 2023
a9f64fb
Version 2.0
kosme Mar 6, 2024
909240f
Merge branch 'develop' into master
kosme Mar 6, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/arduinoFFT.h
Original file line number Diff line number Diff line change
Expand Up @@ -435,12 +435,12 @@ class ArduinoFFT
#endif

/* Variables */
#ifdef FFT_SPEED_OVER_PRECISION
T _oneOverSamples = 0.0;
#endif
T *_vReal = nullptr;
T *_vImag = nullptr;
uint_fast16_t _samples = 0;
#ifdef FFT_SPEED_OVER_PRECISION
T _oneOverSamples = 0.0;
#endif
T _samplingFrequency = 0;
T *_windowWeighingFactors = nullptr;
FFTWindow _weighingFactorsFFTWindow;
Expand Down