This commit is contained in:
RogueMaster
2022-11-24 04:04:05 -05:00
parent 76d3ea2220
commit be0d0e92cd
2 changed files with 530 additions and 450 deletions
File diff suppressed because it is too large Load Diff
+7 -8
View File
@@ -8,18 +8,18 @@
#include <toolbox/stream/file_stream.h>
typedef enum {
EventTypeTick,
EventTypeKey,
EventTypeTick,
EventTypeKey,
} EventType;
typedef struct {
EventType type;
InputEvent input;
EventType type;
InputEvent input;
} PluginEvent;
typedef struct {
int x;
int y;
int x;
int y;
} PluginState;
typedef struct {
@@ -27,7 +27,6 @@ typedef struct {
FuriMessageQueue* event_queue;
PluginState* plugin_state;
ViewPort* view_port;
Storage* storage;
Storage* storage;
uint8_t* log_arr;
} Nrf24Scan;