diff options
| author | david <davidventura27@gmail.com> | 2021-05-01 10:10:44 (GMT) |
|---|---|---|
| committer | david <davidventura27@gmail.com> | 2021-05-01 10:10:44 (GMT) |
| commit | a62b81da3dca80b96c33b702b4265bcfa694d051 (patch) | |
| tree | 3f559c021d2983507daba5ae321f842ab786459d /src/components/heartrate/Ppg.h | |
| parent | eedff2c06c292bda8dcb92fc04c67097fe72e22f (diff) | |
Fix #209. Use int8_t for PPG data array
Diffstat (limited to 'src/components/heartrate/Ppg.h')
| -rw-r--r-- | src/components/heartrate/Ppg.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/heartrate/Ppg.h b/src/components/heartrate/Ppg.h index 6a2fcf1..ee07dfc 100644 --- a/src/components/heartrate/Ppg.h +++ b/src/components/heartrate/Ppg.h @@ -10,14 +10,14 @@ namespace Pinetime { public: explicit Ppg(float spl); - int Preprocess(float spl); + int8_t Preprocess(float spl); float HeartRate(); void SetOffset(uint16_t i); void Reset(); private: - std::array<int, 200> data; + std::array<int8_t, 200> data; size_t dataIndex = 0; float offset; Biquad hpf; @@ -27,4 +27,4 @@ namespace Pinetime { float ProcessHeartRate(); }; } -}
\ No newline at end of file +} |
