Merge branch 'fz-dev' into dev

This commit is contained in:
Eng1n33r
2022-07-04 21:57:40 +03:00
62 changed files with 1405 additions and 221 deletions

View File

@@ -37,6 +37,8 @@
#include <gui/modules/variable_item_list.h>
#include <lib/toolbox/path.h>
#include "rpc/rpc_app.h"
#define SUBGHZ_MAX_LEN_NAME 64
typedef struct {
@@ -100,6 +102,8 @@ struct SubGhz {
string_t error_str;
SubGhzSetting* setting;
SubGhzLock lock;
void* rpc_ctx;
};
bool subghz_set_preset(SubGhz* subghz, const char* preset);
@@ -111,7 +115,7 @@ void subghz_sleep(SubGhz* subghz);
bool subghz_tx_start(SubGhz* subghz, FlipperFormat* flipper_format);
void subghz_tx_stop(SubGhz* subghz);
void subghz_dialog_message_show_only_rx(SubGhz* subghz);
bool subghz_key_load(SubGhz* subghz, const char* file_path);
bool subghz_key_load(SubGhz* subghz, const char* file_path, bool show_dialog);
bool subghz_get_next_name_file(SubGhz* subghz, uint8_t max_len);
bool subghz_save_protocol_to_file(
SubGhz* subghz,