Merge branch 'develop' into refresh_rework

This commit is contained in:
Riku Isokoski
2021-07-23 22:56:00 +03:00
5 changed files with 47 additions and 15 deletions

View File

@@ -2,6 +2,7 @@
#include "Screen.h"
#include <lvgl/src/lv_core/lv_obj.h>
#include "FreeRTOS.h"
namespace Pinetime {
namespace Controllers {
@@ -25,15 +26,18 @@ namespace Pinetime {
lv_obj_t* titleLabel;
mutable char percentStr[10];
States state;
States state = States::Idle;
void DisplayProgression() const;
bool OnButtonPushed() override;
void UpdateValidated();
void UpdateError();
lv_task_t* taskRefresh;
TickType_t startTime;
};
}
}