mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-28 06:15:41 +00: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>
24 lines
662 B
C
24 lines
662 B
C
#pragma once
|
|
#include <gui/view.h>
|
|
|
|
typedef struct LfRfidTuneView LfRfidTuneView;
|
|
|
|
LfRfidTuneView* lfrfid_debug_view_tune_alloc(void);
|
|
|
|
void lfrfid_debug_view_tune_free(LfRfidTuneView* tune_view);
|
|
|
|
View* lfrfid_debug_view_tune_get_view(LfRfidTuneView* tune_view);
|
|
|
|
void lfrfid_debug_view_tune_clean(LfRfidTuneView* tune_view);
|
|
|
|
bool lfrfid_debug_view_tune_is_dirty(LfRfidTuneView* tune_view);
|
|
|
|
uint32_t lfrfid_debug_view_tune_get_arr(LfRfidTuneView* tune_view);
|
|
|
|
uint32_t lfrfid_debug_view_tune_get_ccr(LfRfidTuneView* tune_view);
|
|
|
|
void lfrfid_debug_view_tune_set_callback(
|
|
LfRfidTuneView* tune_view,
|
|
void (*callback)(void* context),
|
|
void* context);
|