summaryrefslogtreecommitdiff
path: root/src/components/heartrate/Ppg.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/heartrate/Ppg.h')
-rw-r--r--src/components/heartrate/Ppg.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/components/heartrate/Ppg.h b/src/components/heartrate/Ppg.h
index 747ae019..51db7582 100644
--- a/src/components/heartrate/Ppg.h
+++ b/src/components/heartrate/Ppg.h
@@ -7,7 +7,7 @@
namespace Pinetime {
namespace Controllers {
class Ppg {
- public:
+ public:
explicit Ppg(float spl);
int Preprocess(float spl);
@@ -16,7 +16,7 @@ namespace Pinetime {
void SetOffset(uint16_t i);
void Reset();
- private:
+ private:
std::array<int, 200> data;
size_t dataIndex = 0;
float offset;
@@ -24,7 +24,6 @@ namespace Pinetime {
Ptagc agc;
Biquad lpf;
-
float ProcessHeartRate();
};
}