summaryrefslogtreecommitdiff
path: root/src/displayapp/DisplayApp.cpp
AgeCommit message (Collapse)Author
2021-09-12Merge pull request #602 from Riksu9000/del_unusedJF002
Remove unused variables
2021-08-30Merge remote-tracking branch 'upstream/develop' into timer_battery_readingRiku Isokoski
2021-08-28Merge pull request #458 from kieranc/pinetimestyle-colorpickerJF002
Add color picker for PineTimeStyle watchface
2021-08-28Merge branch 'develop' into refresh_reworkRiku Isokoski
2021-08-28Merge branch 'develop' into timer_battery_readingRiku Isokoski
2021-08-19Remove unused variablesRiku Isokoski
2021-08-18Merge branch 'develop' into new_touch_handlerRiku Isokoski
2021-08-15Merge remote-tracking branch 'upstream/develop' into pinetimestyle-colorpickerKieran Cawthray
2021-08-15Merge branch 'develop' into refresh_reworkRiku Isokoski
2021-08-14Merge branch 'develop' into timer_battery_readingRiku Isokoski
2021-08-14Merge branch 'call-improvements' of https://github.com/Riksu9000/InfiniTime ↵Jean-François Milants
into Riksu9000-call-improvements # Conflicts: # src/displayapp/screens/Metronome.cpp
2021-08-14Merge branch 'develop' into refresh_reworkRiku Isokoski
2021-08-14Improve metronomeRiku Isokoski
2021-08-14Make battery reading periodic. Add events. Disable pullupRiku Isokoski
2021-08-10Make diff smaller and revert some changes in DisplayAppRiku Isokoski
2021-08-03Merge branch 'develop' into refresh_reworkRiku Isokoski
2021-08-01FixesRiku Isokoski
2021-08-01ImprovementsRiku Isokoski
2021-08-01Merge branch 'develop' into HEADRiku Isokoski
2021-07-28Merge remote-tracking branch 'upstream/develop' into pinetimestyle-colorpickerKieran Cawthray
2021-07-25Merge branch 'develop' into new_touch_handlerRiku Isokoski
2021-07-25Code cleanup (#466)Riku Isokoski
* Code cleanup * Remove override again
2021-07-24Dim screen before sleep (#464)Riku Isokoski
* Implement dimming
2021-07-24Merge branch 'fix_touchevent_tap' of git://github.com/Riksu9000/InfiniTime ↵Jean-François Milants
into Riksu9000-fix_touchevent_tap # Conflicts: # src/displayapp/DisplayApp.cpp
2021-07-23Merge branch 'develop' into refresh_reworkRiku Isokoski
2021-07-23Merge branch 'develop' into new_touch_handlerRiku Isokoski
2021-07-23Merge remote-tracking branch 'upstream/develop' into pinetimestyle-colorpickerKieran Cawthray
2021-07-22Make firmware updating more foolproof (#469)Riku Isokoski
* Make firmware updating more foolproof and fix bugs * No need to manually handle overflow * Make startTime TickType_t * Don't process TouchEvents::None * Fix sleep getting re-enabled issue more directly
2021-07-20Merge remote-tracking branch 'upstream/develop' into pinetimestyle-colorpickerKieran Cawthray
2021-07-19Refresh reworkRiku Isokoski
2021-07-16Fix remaining known issuesRiku Isokoski
2021-07-15Fix most issuesRiku Isokoski
2021-07-15New touch handler, with issuesRiku Isokoski
2021-07-14Set correct refresh times for lvgl (#488)Riku Isokoski
2021-07-14Merge branch 'develop' into fix_touchevent_tapRiku Isokoski
2021-07-13Adjust displayapp delay to compensate time spent (#482)Riku Isokoski
2021-07-12Merge remote-tracking branch 'upstream/develop' into pinetimestyle-colorpickerKieran Cawthray
2021-07-04Improve stopwatch (#432)Riku Isokoski
* Improve stopwatch more * Make sure sleep gets reenabled * Cleanup and clang-format
2021-06-24PineTimeStyle color picker initial commitKieran Cawthray
2021-06-19Add support for BMA425 acceleration sensor. (#440)JF002
* Add support for BMA425 acceleration sensor.
2021-06-12Fix build issues since Metronome app has been merged.Jean-François Milants
2021-06-12add basic metronome app (#409)Bryton Hall
* add basic metronome app * add bpb, tap to bpm, update widgets * use event pressed for bpm tap * move case statement break to the right place * narrow bpm selection range, override touch events * fix arc knob style * re-enable sleeping in destructor
2021-06-12Changed the namespace of SystemInfo::sortById to avoid a name conflict (#360)Avamander
2021-06-12Move most of the code from the constructor of the objects statically ↵Jean-François Milants
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-11Fix regressionRiku Isokoski
2021-06-11Fix touchevent tapRiku Isokoski
2021-06-10Minor improvements: use std::make_unique when creating unique_ptr, check the ↵Jean-François Milants
code is running from an IRQ before calling xQueueSendFromISR or xQueueSend)
2021-06-10Fix stack corruption when exiting an app (the app was destroyed while it was ↵Jean-François Milants
executing the button handler).
2021-06-06Initialize SystemTask, DisplayApp and HeartRateTask as global static ↵Jean-François Milants
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-01Enable various compilation flags to reduce the binary size (#401)JF002
* Add the following compilation flags: * -fno-exceptions and -fno-non-call-exceptions : disable exception handling * -fno-rtti : disable run time type information (needed by dynamic_cast, for example) These flags reduce the binary size by about 100KB! Also, -fstack-usage generate debug info (not in final binary) to allow tools like Puncover to do a stack analysis. * Remove unused CMake variables in CMake_nRF5x.cmake (duplicated in src/CMakeLists.txt). Replace -O0 by -Og in DEBUG builds. This generates a smaller binary (small enough for the internal memory) that is debugger friendly.