Skip to content

Commit 17b7472

Browse files
committed
minor
1 parent fde7a25 commit 17b7472

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

ShimmerDriver/src/main/java/com/shimmerresearch/algorithms/Filter.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
This is a BlackMan-Windowed-Sinc Filter. Algorithm for calculating
55
filter coefficients from "The Scientist and Engineer's Guide to Digital Signal Processing",
6-
copyright ©1997-1998 by Steven W. Smith.
6+
copyright 1997-1998 by Steven W. Smith.
77
For more information visit the book's website at: www.DSPguide.com.
88
99
* Copyright (c) 2010 - 2014, Shimmer Research, Ltd.
@@ -64,7 +64,7 @@
6464
*
6565
This is a BlackMan-Windowed-Sinc Filter. Algorithm for calculating
6666
filter coefficients from "The Scientist and Engineer's Guide to Digital Signal Processing",
67-
copyright ©1997-1998 by Steven W. Smith.
67+
copyright ©1997-1998 by Steven W. Smith.
6868
For more information visit the book's website at: www.DSPguide.com.
6969
*
7070
*/

ShimmerDriver/src/main/java/com/shimmerresearch/driverUtilities/FftCalculateDetails.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
/** References
1616
*
17-
*[1] Angkoon Phinyomark, Pornchai Phukpattaranont, Chusak Limsakul (2012) Feature Reduction and Selection for EMG Signal Classification Elsevier, Expert Systems with Applications 39, P74207431
17+
*[1] Angkoon Phinyomark, Pornchai Phukpattaranont, Chusak Limsakul (2012) Feature Reduction and Selection for EMG Signal Classification Elsevier, Expert Systems with Applications 39, P7420 7431
1818
*[2] http://luscinia.sourceforge.net/page26/page35/page35.html
1919
* */
2020

ShimmerDriver/src/main/java/com/shimmerresearch/sensors/bmpX80/CalibDetailsBmp280.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ public double[] calibratePressureSensorData(double UP, double UT){
122122
double adc_T = UT;
123123
double adc_P = UP;
124124

125-
// Returns temperature in DegC, double precision. Output value of 51.23 equals 51.23 DegC.
125+
// Returns temperature in DegC, double precision. Output value of 51.23 equals 51.23 DegC.
126126
// t_fine carries fine temperature as global value
127127
double var1 = ((adc_T)/16384.0 - dig_T1/1024.0) * dig_T2;
128128
double var2 = (((adc_T)/131072.0 - dig_T1/8192.0) * (adc_T/131072.0 - dig_T1/8192.0)) * dig_T3;
@@ -131,7 +131,7 @@ public double[] calibratePressureSensorData(double UP, double UT){
131131
// double fTemp = T * 1.8 + 32; // Fahrenheit
132132
// T = T/100.0;
133133

134-
// Returns pressure in Pa as double. Output value of 96386.2 equals 96386.2 Pa = 963.862 hPa
134+
// Returns pressure in Pa as double. Output value of 96386.2 equals 96386.2 Pa = 963.862 hPa
135135
var1 = (t_fine/2.0) - 64000.0;
136136
var2 = var1 * var1 * dig_P6 / 32768.0;
137137
var2 = var2 + var1 * dig_P5 * 2.0;

0 commit comments

Comments
 (0)