summaryrefslogtreecommitdiff
path: root/src/displayapp/DisplayAppRecovery.cpp
AgeCommit message (Collapse)Author
2022-06-05Apply clang-format to all C++ filesFinlay Davidson
2022-02-19Provide reference to BrightnessController in DisplayAppReinhold Gschweicher
For the simulator I need a way to get to the brightnessController object and handle the set brightness-levels accoringly. This is done by the constructor expecting a brightnessController object instead of initializing one itself
2021-11-15Update includes to to be relative to src directoryReinhold Gschweicher
Don't use relative imports like `../foo.h` as those depend on the relative position of both files. Rather than that use imports relative to the `src` directory, which explicitly is part of the include directories.
2021-09-18Fix DisplayAppRecovery : add AlarmController to ctor().Jean-François Milants
2021-09-13Fix DisplayAppRecovery : fix include error by forward declaring Controllers ↵Jean-François Milants
in header file.
2021-08-28Fix recovery firmware since last changes in DisplayApp.Jean-François Milants
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-06Fix build for recovery firmware.Jean-François Milants
2021-05-21Fix recovery DisplayApp.Jean-François Milants
2021-05-15Merge pull request #349 from Avamander/patch-2JF002
Switched to booleans for infinite while loops
2021-05-14Added braces to a few if statementsAvamander
2021-05-14Switched to booleans for infinite while loopsAvamander
2021-05-02short vibration when enabling itpetter
2021-04-24Reformatted all the files according to clang-format styleAvamander
2021-04-04First integration of the motion sensor (bma 421) : step counting + wake on ↵Jean-François Milants
wrist rotation + app to see the value of the 3 axis in "real time".
2021-03-21fix display driver issues in recoverypetter
2021-03-20Merge branch 'develop' of github.com:JF002/Pinetime into developJean-François Milants
# Conflicts: # src/main.cpp # src/systemtask/SystemTask.h
2021-01-26Generate pinetime-recovery : a light version of InfiniTime design to be used ↵Jean-François Milants
as a recovery firmware : it only provides basic UI and BLE connectivity for OTA. This new FW is build on the same codebasse than the actual InfiniTime. Only the display task is different (this allows to remove lvgl from the recovery fw, which is very heavy). CMake builds and docker have been modified accordingly. Note than the fw is converted into an image and then into a DFU in the cmake build (previously, it was only done in the