Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/subghz/protocols/subghz_protocol_hormann.h')
-rw-r--r--lib/subghz/protocols/subghz_protocol_hormann.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/subghz/protocols/subghz_protocol_hormann.h b/lib/subghz/protocols/subghz_protocol_hormann.h
index 6032f7a6..65b80e08 100644
--- a/lib/subghz/protocols/subghz_protocol_hormann.h
+++ b/lib/subghz/protocols/subghz_protocol_hormann.h
@@ -48,22 +48,22 @@ void subghz_protocol_hormann_to_str(SubGhzProtocolHormann* instance, string_t ou
/** Adding data to a file
*
* @param instance - SubGhzProtocolHormann instance
- * @param flipper_file - FlipperFile
+ * @param flipper_format - FlipperFormat
* @return bool
*/
bool subghz_protocol_hormann_to_save_file(
SubGhzProtocolHormann* instance,
- FlipperFile* flipper_file);
+ FlipperFormat* flipper_format);
/** Loading protocol from file
*
- * @param flipper_file - FlipperFile
+ * @param flipper_format - FlipperFormat
* @param instance - SubGhzProtocolHormann instance
* @param file_path - file path
* @return bool
*/
bool subghz_protocol_hormann_to_load_protocol_from_file(
- FlipperFile* flipper_file,
+ FlipperFormat* flipper_format,
SubGhzProtocolHormann* instance,
const char* file_path);