This commit is contained in:
RogueMaster
2022-12-18 15:38:42 -05:00
parent 2718505a1c
commit ba4c534cd1
+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;