Jean-François Milants
|
6d524ebea2
|
Move most of the code from the constructor of the objects statically initialized in main() into Start()/Init() functions to avoid Static Initialization Order Fiasco (https://en.cppreference.com/w/cpp/language/siof). See https://github.com/JF002/InfiniTime/pull/415#issuecomment-859004238.
|
2021-06-12 10:58:28 +02:00 |
|
Jean-François Milants
|
7f9cc51b05
|
Initialize SystemTask, DisplayApp and HeartRateTask as global static variable instead of variables on the heap. We don't need them on the heap as we know their size at build time, it'll reduce memory fragmentation and it'll make memory analysis easier.
|
2021-06-06 15:56:03 +02:00 |
|
Avamander
|
40d45d923b
|
Reformatted all the files according to clang-format style
|
2021-04-24 11:39:53 +03:00 |
|
Jean-François Milants
|
5016e0143f
|
Increase FreeRTOS heap size and re-enable heart rate task. New Nimble probably uses more memory than before.
|
2021-02-03 20:28:41 +01:00 |
|
Jean-François Milants
|
d90b7274fa
|
Update to nimble 1.3 master branch commit 82153e744833821e20e9a8b0d61c38b2b0dbcfe1
WARNING : heartbeat task is disabled!
|
2021-02-02 22:09:00 +01:00 |
|
Jean-François Milants
|
04063cf0af
|
HR Sensor : Add start/stop button to the HeartRate app (the HR sensors stays ON when the app is closed), display the HR value on the Clock app.
|
2021-01-17 10:39:46 +01:00 |
|
Jean-François Milants
|
1a582815ba
|
First implementation of the HR sensor using 100% foss code (ported from waspos)
|
2021-01-10 17:57:26 +01:00 |
|