9a9abd59e9
* WeatherStation: start * SubGhz: rename protocol magellen -> magellan * WeatherStation: err Unresolved symbols: {'subghz_protocol_decoder_base_get_string'} * WeatherStation: fix Unresolved symbols: {'subghz_protocol_decoder_base_get_string'} * Subghz: add set protocol_items * WeatherStation: adding your protocols * WS: add Infactory protocol * WS: add history * WS: add setting * WS: add lock * WS: add hopper frequency * WS: fix history * WS fix string_t -> FuriString* * WS: add images * WS: history record update when receiving data from the sensor again * WS: add receiver info, delete extra code * WS: add protocol ThermoPRO_TX4 * [FL-2900] SubGhz: Move icons in Sub-GHz * WS: add Notification * [FL-2890] SubGhz: Rename *_user files in resources to _user.example * WS: add about scene * WS: removing redundant code * WS: add protocol Nexus-TH * WS: add protocol GT_WT03 * WS: fix notification and rename "Weather Station" -> "Read Weather Station" * SubGhz: partial unit tests fix * SubGhz: fix unit_test * SubGhz: remove dead code * SubGhz: rename SubGhzPresetDefinition into SubGhzRadioPreset, cleanup subghz types. Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
106 lines
2.9 KiB
C
106 lines
2.9 KiB
C
|
|
#pragma once
|
|
|
|
#include <math.h>
|
|
#include <furi.h>
|
|
#include <furi_hal.h>
|
|
#include <lib/flipper_format/flipper_format.h>
|
|
#include <lib/subghz/types.h>
|
|
|
|
typedef struct SubGhzHistory SubGhzHistory;
|
|
|
|
/** Allocate SubGhzHistory
|
|
*
|
|
* @return SubGhzHistory*
|
|
*/
|
|
SubGhzHistory* subghz_history_alloc(void);
|
|
|
|
/** Free SubGhzHistory
|
|
*
|
|
* @param instance - SubGhzHistory instance
|
|
*/
|
|
void subghz_history_free(SubGhzHistory* instance);
|
|
|
|
/** Clear history
|
|
*
|
|
* @param instance - SubGhzHistory instance
|
|
*/
|
|
void subghz_history_reset(SubGhzHistory* instance);
|
|
|
|
/** Get frequency to history[idx]
|
|
*
|
|
* @param instance - SubGhzHistory instance
|
|
* @param idx - record index
|
|
* @return frequency - frequency Hz
|
|
*/
|
|
uint32_t subghz_history_get_frequency(SubGhzHistory* instance, uint16_t idx);
|
|
|
|
SubGhzRadioPreset* subghz_history_get_radio_preset(SubGhzHistory* instance, uint16_t idx);
|
|
|
|
/** Get preset to history[idx]
|
|
*
|
|
* @param instance - SubGhzHistory instance
|
|
* @param idx - record index
|
|
* @return preset - preset name
|
|
*/
|
|
const char* subghz_history_get_preset(SubGhzHistory* instance, uint16_t idx);
|
|
|
|
/** Get history index write
|
|
*
|
|
* @param instance - SubGhzHistory instance
|
|
* @return idx - current record index
|
|
*/
|
|
uint16_t subghz_history_get_item(SubGhzHistory* instance);
|
|
|
|
/** Get type protocol to history[idx]
|
|
*
|
|
* @param instance - SubGhzHistory instance
|
|
* @param idx - record index
|
|
* @return type - type protocol
|
|
*/
|
|
uint8_t subghz_history_get_type_protocol(SubGhzHistory* instance, uint16_t idx);
|
|
|
|
/** Get name protocol to history[idx]
|
|
*
|
|
* @param instance - SubGhzHistory instance
|
|
* @param idx - record index
|
|
* @return name - const char* name protocol
|
|
*/
|
|
const char* subghz_history_get_protocol_name(SubGhzHistory* instance, uint16_t idx);
|
|
|
|
/** Get string item menu to history[idx]
|
|
*
|
|
* @param instance - SubGhzHistory instance
|
|
* @param output - FuriString* output
|
|
* @param idx - record index
|
|
*/
|
|
void subghz_history_get_text_item_menu(SubGhzHistory* instance, FuriString* output, uint16_t idx);
|
|
|
|
/** Get string the remaining number of records to history
|
|
*
|
|
* @param instance - SubGhzHistory instance
|
|
* @param output - FuriString* output
|
|
* @return bool - is FUUL
|
|
*/
|
|
bool subghz_history_get_text_space_left(SubGhzHistory* instance, FuriString* output);
|
|
|
|
/** Add protocol to history
|
|
*
|
|
* @param instance - SubGhzHistory instance
|
|
* @param context - SubGhzProtocolCommon context
|
|
* @param preset - SubGhzRadioPreset preset
|
|
* @return bool;
|
|
*/
|
|
bool subghz_history_add_to_history(
|
|
SubGhzHistory* instance,
|
|
void* context,
|
|
SubGhzRadioPreset* preset);
|
|
|
|
/** Get SubGhzProtocolCommonLoad to load into the protocol decoder bin data
|
|
*
|
|
* @param instance - SubGhzHistory instance
|
|
* @param idx - record index
|
|
* @return SubGhzProtocolCommonLoad*
|
|
*/
|
|
FlipperFormat* subghz_history_get_raw_data(SubGhzHistory* instance, uint16_t idx);
|