This website requires JavaScript.
Explore
Help
Sign In
scott
/
InfiniTime
Watch
1
Star
0
Fork
You've already forked InfiniTime
0
Code
Issues
Pull requests
Actions
Packages
Projects
Releases
1
Wiki
Activity
17c6583937
InfiniTime
/
src
/
systemtask
History
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
..
Messages.h
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
SystemMonitor.h
Changed access modified indentation
2021-04-24 12:00:45 +03:00
SystemTask.cpp
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
SystemTask.h
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