mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-24 03:29:57 -07:00
103 lines
3.0 KiB
C
103 lines
3.0 KiB
C
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <stddef.h>
|
|
|
|
#include <lib/flipper_format/flipper_format.h>
|
|
#include <furi.h>
|
|
#include <furi_hal.h>
|
|
#include "../types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct SubGhzBlockGeneric SubGhzBlockGeneric;
|
|
|
|
struct SubGhzBlockGeneric {
|
|
const char* protocol_name;
|
|
uint64_t data;
|
|
uint64_t data_2;
|
|
uint32_t serial;
|
|
uint16_t data_count_bit;
|
|
uint8_t btn;
|
|
uint32_t cnt;
|
|
uint8_t cnt_2;
|
|
uint32_t seed;
|
|
};
|
|
|
|
typedef struct SubGhzBlockGenericGlobal SubGhzBlockGenericGlobal;
|
|
|
|
struct SubGhzBlockGenericGlobal {
|
|
uint32_t current_cnt; // global counter value;
|
|
uint32_t new_cnt; // global counter value;
|
|
bool cnt_need_override; // flag for protocols to override signals counter inside of protocols
|
|
uint8_t cnt_length_bit; // counter length in bytes (used in counter editor giu)
|
|
bool cnt_is_available; // is there counter available for protocol (used in counter editor giu)
|
|
};
|
|
|
|
extern SubGhzBlockGenericGlobal subghz_block_generic_global; //global structure for subghz
|
|
|
|
/**
|
|
* Setup SubGhzBlockGenericGlobal.cnt and cnt_need_override flag to be used in protocols;
|
|
* @param counter new counter value;
|
|
*/
|
|
void subghz_block_generic_global_counter_override_set(uint32_t counter);
|
|
|
|
/**
|
|
* Return true if incomming variable was overrided by SubGhzBlockGenericGlobal.cnt
|
|
* else return false and not change incomming variable
|
|
* @param counter pointer to counter variable that must be changed
|
|
*/
|
|
bool subghz_block_generic_global_counter_override_get(uint32_t* counter);
|
|
|
|
/**
|
|
* Reset subghz_block_generic global structure;
|
|
*/
|
|
void subghz_block_generic_global_reset(void* p);
|
|
|
|
/**
|
|
* Get name preset.
|
|
* @param preset_name name preset
|
|
* @param preset_str Output name preset
|
|
*/
|
|
void subghz_block_generic_get_preset_name(const char* preset_name, FuriString* preset_str);
|
|
|
|
/**
|
|
* Serialize data SubGhzBlockGeneric.
|
|
* @param instance Pointer to a SubGhzBlockGeneric instance
|
|
* @param flipper_format Pointer to a FlipperFormat instance
|
|
* @param preset The modulation on which the signal was received, SubGhzRadioPreset
|
|
* @return Status Error
|
|
*/
|
|
SubGhzProtocolStatus subghz_block_generic_serialize(
|
|
SubGhzBlockGeneric* instance,
|
|
FlipperFormat* flipper_format,
|
|
SubGhzRadioPreset* preset);
|
|
|
|
/**
|
|
* Deserialize data SubGhzBlockGeneric.
|
|
* @param instance Pointer to a SubGhzBlockGeneric instance
|
|
* @param flipper_format Pointer to a FlipperFormat instance
|
|
* @return Status Error
|
|
*/
|
|
SubGhzProtocolStatus
|
|
subghz_block_generic_deserialize(SubGhzBlockGeneric* instance, FlipperFormat* flipper_format);
|
|
|
|
/**
|
|
* Deserialize data SubGhzBlockGeneric.
|
|
* @param instance Pointer to a SubGhzBlockGeneric instance
|
|
* @param flipper_format Pointer to a FlipperFormat instance
|
|
* @param count_bit Count bit protocol
|
|
* @return Status Error
|
|
*/
|
|
SubGhzProtocolStatus subghz_block_generic_deserialize_check_count_bit(
|
|
SubGhzBlockGeneric* instance,
|
|
FlipperFormat* flipper_format,
|
|
uint16_t count_bit);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|