summaryrefslogtreecommitdiff
path: root/src/system.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/system.h')
-rw-r--r--src/system.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/system.h b/src/system.h
index 36e8e37..8960b77 100644
--- a/src/system.h
+++ b/src/system.h
@@ -14,6 +14,26 @@ const uint8_t systemPowerdownImage[] = {
0x00
};
+// TODO dito?
+const uint8_t systemFlashImage[] = {
+ 0x00,
+ 0x00,
+ 0x00,
+ 0x00,
+ 0x00,
+ 0x00,
+ 0x00,
+ 0x00,
+ 0x00,
+ 0x00,
+ 0x07,
+ 0x33,
+ 0x55,
+ 0x98,
+ 0x00,
+ 0x00
+};
+
/**
* Contains the system idle loop. Checks for button presses, handles
* standby/resume, reads data from the Modem and updates the Display.
@@ -25,6 +45,8 @@ class System {
void shutdown(void);
void receive(void);
void loadPattern(uint8_t anim_no);
+ void dispPowerdown();
+ void dispFlashing();
enum TransmissionControl : uint8_t {
BYTE_END = 0x84,