From ba4c534cd1752ce7db7edaa3cd443471359a6f42 Mon Sep 17 00:00:00 2001 From: RogueMaster Date: Sun, 18 Dec 2022 15:38:42 -0500 Subject: [PATCH] fmt --- applications/plugins/nrf24scan/nrf24scan.h | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/applications/plugins/nrf24scan/nrf24scan.h b/applications/plugins/nrf24scan/nrf24scan.h index b73adde2b..c3fa2891a 100644 --- a/applications/plugins/nrf24scan/nrf24scan.h +++ b/applications/plugins/nrf24scan/nrf24scan.h @@ -9,18 +9,18 @@ #include 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; -