mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-25 22:32:29 +03:00
acc39a4bc0
* Api Symbols: replace asserts with checks * Api Symbols: replace asserts with checks part 2 * Update no args function signatures with void, to help compiler to track incorrect usage * More unavoidable void * Update PVS config and code to make it happy * Format sources * nfc: fix checks * dead code cleanup & include fixes Co-authored-by: gornekich <n.gorbadey@gmail.com> Co-authored-by: hedger <hedger@users.noreply.github.com> Co-authored-by: hedger <hedger@nanode.su>
45 lines
948 B
C
45 lines
948 B
C
#pragma once
|
|
|
|
#include <core/pubsub.h>
|
|
#include <furi.h>
|
|
#include <furi_hal.h>
|
|
|
|
#include "dolphin.h"
|
|
#include "helpers/dolphin_state.h"
|
|
|
|
typedef enum {
|
|
DolphinEventTypeDeed,
|
|
DolphinEventTypeStats,
|
|
DolphinEventTypeFlush,
|
|
DolphinEventTypeIncreaseButthurt,
|
|
DolphinEventTypeClearLimits,
|
|
} DolphinEventType;
|
|
|
|
typedef struct {
|
|
DolphinEventType type;
|
|
FuriEventFlag* flag;
|
|
union {
|
|
DolphinDeed deed;
|
|
DolphinStats* stats;
|
|
};
|
|
} DolphinEvent;
|
|
|
|
struct Dolphin {
|
|
// State
|
|
DolphinState* state;
|
|
// Queue
|
|
FuriMessageQueue* event_queue;
|
|
FuriPubSub* pubsub;
|
|
FuriTimer* butthurt_timer;
|
|
FuriTimer* flush_timer;
|
|
FuriTimer* clear_limits_timer;
|
|
};
|
|
|
|
Dolphin* dolphin_alloc(void);
|
|
|
|
void dolphin_event_send_async(Dolphin* dolphin, DolphinEvent* event);
|
|
|
|
void dolphin_event_send_wait(Dolphin* dolphin, DolphinEvent* event);
|
|
|
|
void dolphin_event_release(Dolphin* dolphin, DolphinEvent* event);
|