b9a766d909
* Added support for running applications from SD card (FAPs - Flipper Application Packages) * Added plugin_dist target for fbt to build FAPs * All apps of type FlipperAppType.EXTERNAL and FlipperAppType.PLUGIN are built as FAPs by default * Updated VSCode configuration for new fbt features - re-deploy stock configuration to use them * Added debugging support for FAPs with fbt debug & VSCode * Added public firmware API with automated versioning Co-authored-by: hedger <hedger@users.noreply.github.com> Co-authored-by: SG <who.just.the.doctor@gmail.com> Co-authored-by: あく <alleteam@gmail.com>
51 lines
1.3 KiB
C
51 lines
1.3 KiB
C
#pragma once
|
|
|
|
#include <gui/view.h>
|
|
#include "../helpers/subghz_custom_event.h"
|
|
|
|
typedef struct SubGhzReadRAW SubGhzReadRAW;
|
|
|
|
typedef void (*SubGhzReadRAWCallback)(SubGhzCustomEvent event, void* context);
|
|
|
|
typedef enum {
|
|
SubGhzReadRAWStatusStart,
|
|
SubGhzReadRAWStatusIDLE,
|
|
SubGhzReadRAWStatusREC,
|
|
SubGhzReadRAWStatusTX,
|
|
SubGhzReadRAWStatusTXRepeat,
|
|
|
|
SubGhzReadRAWStatusLoadKeyIDLE,
|
|
SubGhzReadRAWStatusLoadKeyTX,
|
|
SubGhzReadRAWStatusLoadKeyTXRepeat,
|
|
SubGhzReadRAWStatusSaveKey,
|
|
} SubGhzReadRAWStatus;
|
|
|
|
void subghz_read_raw_set_callback(
|
|
SubGhzReadRAW* subghz_read_raw,
|
|
SubGhzReadRAWCallback callback,
|
|
void* context);
|
|
|
|
SubGhzReadRAW* subghz_read_raw_alloc();
|
|
|
|
void subghz_read_raw_free(SubGhzReadRAW* subghz_static);
|
|
|
|
void subghz_read_raw_add_data_statusbar(
|
|
SubGhzReadRAW* instance,
|
|
const char* frequency_str,
|
|
const char* preset_str);
|
|
|
|
void subghz_read_raw_update_sample_write(SubGhzReadRAW* instance, size_t sample);
|
|
|
|
void subghz_read_raw_stop_send(SubGhzReadRAW* instance);
|
|
|
|
void subghz_read_raw_update_sin(SubGhzReadRAW* instance);
|
|
|
|
void subghz_read_raw_add_data_rssi(SubGhzReadRAW* instance, float rssi);
|
|
|
|
void subghz_read_raw_set_status(
|
|
SubGhzReadRAW* instance,
|
|
SubGhzReadRAWStatus status,
|
|
const char* file_name);
|
|
|
|
View* subghz_read_raw_get_view(SubGhzReadRAW* subghz_static);
|