Skip to content

Commit

Permalink
fix typo in remove_environmental_noise
Browse files Browse the repository at this point in the history
Signed-off-by: Andrey Parfenov <a1994ndrey@gmail.com>
  • Loading branch information
Andrey1994 committed Jun 11, 2022
1 parent 1f89540 commit fc8097a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/data_handler/data_handler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ int remove_environmental_noise (double *data, int data_len, int sampling_rate, i
{
case NoiseTypes::FIFTY:
res = perform_bandstop (
data, data_len, sampling_rate, 48.0, 62.0, 4, (int)FilterTypes::BUTTERWORTH, 0.0);
data, data_len, sampling_rate, 48.0, 52.0, 4, (int)FilterTypes::BUTTERWORTH, 0.0);
break;
case NoiseTypes::SIXTY:
res = perform_bandstop (
Expand Down

0 comments on commit fc8097a

Please sign in to comment.