summaryrefslogtreecommitdiff
path: root/src/components/heartrate/Ptagc.h
diff options
context:
space:
mode:
authorAvamander <avamander@gmail.com>2021-04-18 20:28:14 +0300
committerAvamander <avamander@gmail.com>2021-04-24 11:39:53 +0300
commit40d45d923b033363ff1304b47eac238dd4495a57 (patch)
tree9e7b668fdf23a7be892b8e2bf8b4d62b884cee06 /src/components/heartrate/Ptagc.h
parente56ebb8bd621cc8838e86fa032d680a6e7a35ffc (diff)
Reformatted all the files according to clang-format style
Diffstat (limited to 'src/components/heartrate/Ptagc.h')
-rw-r--r--src/components/heartrate/Ptagc.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/components/heartrate/Ptagc.h b/src/components/heartrate/Ptagc.h
index c20de4c0..aaa6f1e6 100644
--- a/src/components/heartrate/Ptagc.h
+++ b/src/components/heartrate/Ptagc.h
@@ -3,16 +3,15 @@
namespace Pinetime {
namespace Controllers {
class Ptagc {
- public:
+ public:
Ptagc(float start, float decay, float threshold);
float Step(float spl);
- private:
+ private:
float peak;
float decay;
float boost;
float threshold;
-
};
}
}