Fix some structs to be binary comaptible to OFW

This commit is contained in:
Willy-JL
2024-08-07 02:16:28 +02:00
parent 083c17f09d
commit 6c1ec67346
3 changed files with 5 additions and 2 deletions

View File

@@ -86,6 +86,7 @@ struct Bt {
FuriEventFlag* api_event;
BtStatusChangedCallback status_changed_cb;
void* status_changed_ctx;
uint32_t pin;
bool suppress_pin_screen;
};

View File

@@ -16,7 +16,6 @@ DICT_DEF2(ViewDict, uint32_t, M_DEFAULT_OPLIST, View*, M_PTR_OPLIST) // NOLINT
struct ViewDispatcher {
FuriEventLoop* event_loop;
FuriMessageQueue* input_queue;
FuriMessageQueue* ascii_queue;
FuriMessageQueue* event_queue;
Gui* gui;
@@ -33,6 +32,8 @@ struct ViewDispatcher {
ViewDispatcherTickEventCallback tick_event_callback;
uint32_t tick_period;
void* event_context;
FuriMessageQueue* ascii_queue;
};
/** ViewPort Draw Callback */

View File

@@ -49,7 +49,6 @@ typedef struct {
struct NotificationApp {
FuriMessageQueue* queue;
FuriPubSub* event_record;
FuriPubSub* ascii_record;
FuriTimer* display_timer;
NotificationLedLayer display;
@@ -57,6 +56,8 @@ struct NotificationApp {
uint8_t display_led_lock;
NotificationSettings settings;
FuriPubSub* ascii_record;
};
#ifdef __cplusplus