aboutsummaryrefslogtreecommitdiffstats
path: root/src/Components/Gfx/Gfx.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Components/Gfx/Gfx.h')
-rw-r--r--src/Components/Gfx/Gfx.h18
1 files changed, 17 insertions, 1 deletions
diff --git a/src/Components/Gfx/Gfx.h b/src/Components/Gfx/Gfx.h
index d8728701..81c5f387 100644
--- a/src/Components/Gfx/Gfx.h
+++ b/src/Components/Gfx/Gfx.h
@@ -1,6 +1,7 @@
#pragma once
#include <cstdint>
#include <nrf_font.h>
+#include <drivers/BufferProvider.h>
namespace Pinetime {
@@ -8,7 +9,7 @@ namespace Pinetime {
class St7789;
}
namespace Components {
- class Gfx {
+ class Gfx : public Pinetime::Drivers::BufferProvider {
public:
explicit Gfx(Drivers::St7789& lcd);
void Init();
@@ -19,11 +20,26 @@ namespace Pinetime {
void Sleep();
void Wakeup();
+ bool GetNextBuffer(uint8_t **buffer, size_t &size) override;
private:
static constexpr uint8_t width = 240;
static constexpr uint8_t height = 240;
+ enum class Action { None, FillRectangle, DrawChar};
+ struct State {
+ State() : busy{false}, action{Action::None}, remainingIterations{0}, currentIteration{0} {}
+ volatile bool busy;
+ volatile Action action;
+ volatile uint16_t remainingIterations;
+ volatile uint16_t currentIteration;
+ volatile FONT_INFO *font;
+ volatile uint16_t color;
+ volatile uint8_t character;
+ };
+
+ volatile State state;
+
uint16_t buffer[width]; // 1 line buffer
Drivers::St7789& lcd;