This commit is contained in:
RogueMaster
2022-12-14 21:29:52 -05:00
parent 090c95e97a
commit 5a9706a408
2 changed files with 1229 additions and 1044 deletions
File diff suppressed because it is too large Load Diff
+8 -9
View File
@@ -9,18 +9,18 @@
#include <notification/notification_messages.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 {
@@ -28,8 +28,7 @@ typedef struct {
FuriMessageQueue* event_queue;
PluginState* plugin_state;
ViewPort* view_port;
Storage* storage;
NotificationApp* notification;
Storage* storage;
NotificationApp* notification;
uint8_t* log_arr;
} Nrf24Scan;