mirror of
https://github.com/flipperdevices/flipperzero-firmware.git
synced 2025-12-12 04:41:26 +04:00
Added protocol for Dickert MAHS garage door remote control (#3826)
* Added Dickert MAHS protocol * Update protocol_items.c * Added Dickert MAHS protocol reference * Update protocol_items.h * Removed logging and some defines * Reworked the send code to properly adhere to Dickert timings * Added subghz unit test for Dickert MAHS * Minor fix in encoding length * Added Dickert Decoder Test to subghz unit tests and set repeat=10 * SubGhz: cleanup dickert mahs code and documentation * SubGhz: correct type in for statement in dickert mahs Co-authored-by: あく <alleteam@gmail.com>
This commit is contained in:
385
lib/subghz/protocols/dickert_mahs.c
Normal file
385
lib/subghz/protocols/dickert_mahs.c
Normal file
@@ -0,0 +1,385 @@
|
||||
#include "dickert_mahs.h"
|
||||
|
||||
#include "../blocks/const.h"
|
||||
#include "../blocks/decoder.h"
|
||||
#include "../blocks/encoder.h"
|
||||
#include "../blocks/generic.h"
|
||||
#include "../blocks/math.h"
|
||||
|
||||
#include <furi.h>
|
||||
#include <furi_hal.h>
|
||||
#include <furi_hal_rtc.h>
|
||||
|
||||
#define TAG "SubGhzProtocolDicketMAHS"
|
||||
|
||||
static const SubGhzBlockConst subghz_protocol_dickert_mahs_const = {
|
||||
.te_short = 400,
|
||||
.te_long = 800,
|
||||
.te_delta = 100,
|
||||
.min_count_bit_for_found = 36,
|
||||
};
|
||||
|
||||
struct SubGhzProtocolDecoderDickertMAHS {
|
||||
SubGhzProtocolDecoderBase base;
|
||||
|
||||
SubGhzBlockDecoder decoder;
|
||||
SubGhzBlockGeneric generic;
|
||||
|
||||
uint32_t tmp[2];
|
||||
uint8_t tmp_cnt;
|
||||
};
|
||||
|
||||
struct SubGhzProtocolEncoderDickertMAHS {
|
||||
SubGhzProtocolEncoderBase base;
|
||||
|
||||
SubGhzProtocolBlockEncoder encoder;
|
||||
SubGhzBlockGeneric generic;
|
||||
};
|
||||
|
||||
typedef enum {
|
||||
DickertMAHSDecoderStepReset = 0,
|
||||
DickertMAHSDecoderStepInitial,
|
||||
DickertMAHSDecoderStepRecording,
|
||||
} DickertMAHSDecoderStep;
|
||||
|
||||
const SubGhzProtocolDecoder subghz_protocol_dickert_mahs_decoder = {
|
||||
.alloc = subghz_protocol_decoder_dickert_mahs_alloc,
|
||||
.free = subghz_protocol_decoder_dickert_mahs_free,
|
||||
|
||||
.feed = subghz_protocol_decoder_dickert_mahs_feed,
|
||||
.reset = subghz_protocol_decoder_dickert_mahs_reset,
|
||||
|
||||
.get_hash_data = subghz_protocol_decoder_dickert_mahs_get_hash_data,
|
||||
.serialize = subghz_protocol_decoder_dickert_mahs_serialize,
|
||||
.deserialize = subghz_protocol_decoder_dickert_mahs_deserialize,
|
||||
.get_string = subghz_protocol_decoder_dickert_mahs_get_string,
|
||||
};
|
||||
|
||||
const SubGhzProtocolEncoder subghz_protocol_dickert_mahs_encoder = {
|
||||
.alloc = subghz_protocol_encoder_dickert_mahs_alloc,
|
||||
.free = subghz_protocol_encoder_dickert_mahs_free,
|
||||
|
||||
.deserialize = subghz_protocol_encoder_dickert_mahs_deserialize,
|
||||
.stop = subghz_protocol_encoder_dickert_mahs_stop,
|
||||
.yield = subghz_protocol_encoder_dickert_mahs_yield,
|
||||
};
|
||||
|
||||
const SubGhzProtocol subghz_protocol_dickert_mahs = {
|
||||
.name = SUBGHZ_PROTOCOL_DICKERT_MAHS_NAME,
|
||||
.type = SubGhzProtocolTypeStatic,
|
||||
.flag = SubGhzProtocolFlag_433 | SubGhzProtocolFlag_AM | SubGhzProtocolFlag_Decodable |
|
||||
SubGhzProtocolFlag_Load | SubGhzProtocolFlag_Save | SubGhzProtocolFlag_Send,
|
||||
|
||||
.decoder = &subghz_protocol_dickert_mahs_decoder,
|
||||
.encoder = &subghz_protocol_dickert_mahs_encoder,
|
||||
};
|
||||
|
||||
static void subghz_protocol_encoder_dickert_mahs_parse_buffer(
|
||||
SubGhzProtocolDecoderDickertMAHS* instance,
|
||||
FuriString* output) {
|
||||
// We assume we have only decodes < 64 bit!
|
||||
uint64_t data = instance->generic.data;
|
||||
uint8_t bits[36] = {};
|
||||
|
||||
// Convert uint64_t into bit array
|
||||
for(int i = 35; i >= 0; i--) {
|
||||
if(data & 1) {
|
||||
bits[i] = 1;
|
||||
}
|
||||
data >>= 1;
|
||||
}
|
||||
|
||||
// Decode symbols
|
||||
FuriString* code = furi_string_alloc();
|
||||
for(size_t i = 0; i < 35; i += 2) {
|
||||
uint8_t dip = (bits[i] << 1) + bits[i + 1];
|
||||
// PLUS = 3, // 0b11
|
||||
// ZERO = 1, // 0b01
|
||||
// MINUS = 0, // 0x00
|
||||
if(dip == 0x01) {
|
||||
furi_string_cat(code, "0");
|
||||
} else if(dip == 0x00) {
|
||||
furi_string_cat(code, "-");
|
||||
} else if(dip == 0x03) {
|
||||
furi_string_cat(code, "+");
|
||||
} else {
|
||||
furi_string_cat(code, "?");
|
||||
}
|
||||
}
|
||||
|
||||
FuriString* user_dips = furi_string_alloc();
|
||||
FuriString* fact_dips = furi_string_alloc();
|
||||
furi_string_set_n(user_dips, code, 0, 10);
|
||||
furi_string_set_n(fact_dips, code, 10, 8);
|
||||
|
||||
furi_string_cat_printf(
|
||||
output,
|
||||
"%s\r\n"
|
||||
"User-Dips:\t%s\r\n"
|
||||
"Fac-Code:\t%s\r\n",
|
||||
instance->generic.protocol_name,
|
||||
furi_string_get_cstr(user_dips),
|
||||
furi_string_get_cstr(fact_dips));
|
||||
furi_string_free(user_dips);
|
||||
furi_string_free(fact_dips);
|
||||
furi_string_free(code);
|
||||
}
|
||||
|
||||
void* subghz_protocol_encoder_dickert_mahs_alloc(SubGhzEnvironment* environment) {
|
||||
UNUSED(environment);
|
||||
SubGhzProtocolEncoderDickertMAHS* instance = malloc(sizeof(SubGhzProtocolEncoderDickertMAHS));
|
||||
|
||||
instance->base.protocol = &subghz_protocol_dickert_mahs;
|
||||
instance->generic.protocol_name = instance->base.protocol->name;
|
||||
|
||||
instance->encoder.repeat = 10;
|
||||
instance->encoder.size_upload = 128;
|
||||
instance->encoder.upload = malloc(instance->encoder.size_upload * sizeof(LevelDuration));
|
||||
instance->encoder.is_running = false;
|
||||
return instance;
|
||||
}
|
||||
|
||||
void subghz_protocol_encoder_dickert_mahs_free(void* context) {
|
||||
furi_assert(context);
|
||||
SubGhzProtocolEncoderDickertMAHS* instance = context;
|
||||
free(instance->encoder.upload);
|
||||
free(instance);
|
||||
}
|
||||
|
||||
/**
|
||||
* Generating an upload from data.
|
||||
* @param instance Pointer to a SubGhzProtocolEncoderDickertMAHS instance
|
||||
* @return true On success
|
||||
*/
|
||||
static bool
|
||||
subghz_protocol_encoder_dickert_mahs_get_upload(SubGhzProtocolEncoderDickertMAHS* instance) {
|
||||
furi_assert(instance);
|
||||
size_t index = 0;
|
||||
size_t size_upload = (instance->generic.data_count_bit * 2) + 2;
|
||||
if(size_upload > instance->encoder.size_upload) {
|
||||
FURI_LOG_E(TAG, "Size upload exceeds allocated encoder buffer.");
|
||||
return false;
|
||||
} else {
|
||||
instance->encoder.size_upload = size_upload;
|
||||
}
|
||||
|
||||
instance->encoder.upload[index++] =
|
||||
level_duration_make(false, (uint32_t)subghz_protocol_dickert_mahs_const.te_short * 112);
|
||||
// Send start bit
|
||||
instance->encoder.upload[index++] =
|
||||
level_duration_make(true, (uint32_t)subghz_protocol_dickert_mahs_const.te_short);
|
||||
|
||||
//Send key data
|
||||
for(uint8_t i = instance->generic.data_count_bit; i > 0; i--) {
|
||||
if(bit_read(instance->generic.data, i - 1)) {
|
||||
//send bit 1
|
||||
instance->encoder.upload[index++] =
|
||||
level_duration_make(false, (uint32_t)subghz_protocol_dickert_mahs_const.te_long);
|
||||
instance->encoder.upload[index++] =
|
||||
level_duration_make(true, (uint32_t)subghz_protocol_dickert_mahs_const.te_short);
|
||||
} else {
|
||||
//send bit 0
|
||||
instance->encoder.upload[index++] =
|
||||
level_duration_make(false, (uint32_t)subghz_protocol_dickert_mahs_const.te_short);
|
||||
instance->encoder.upload[index++] =
|
||||
level_duration_make(true, (uint32_t)subghz_protocol_dickert_mahs_const.te_long);
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
SubGhzProtocolStatus
|
||||
subghz_protocol_encoder_dickert_mahs_deserialize(void* context, FlipperFormat* flipper_format) {
|
||||
furi_assert(context);
|
||||
SubGhzProtocolEncoderDickertMAHS* instance = context;
|
||||
SubGhzProtocolStatus ret = SubGhzProtocolStatusError;
|
||||
do {
|
||||
ret = subghz_block_generic_deserialize(&instance->generic, flipper_format);
|
||||
if(ret != SubGhzProtocolStatusOk) {
|
||||
break;
|
||||
}
|
||||
|
||||
// Allow for longer keys (<) instead of !=
|
||||
if((instance->generic.data_count_bit <
|
||||
subghz_protocol_dickert_mahs_const.min_count_bit_for_found)) {
|
||||
FURI_LOG_E(TAG, "Wrong number of bits in key");
|
||||
ret = SubGhzProtocolStatusErrorValueBitCount;
|
||||
break;
|
||||
}
|
||||
//optional parameter parameter
|
||||
flipper_format_read_uint32(
|
||||
flipper_format, "Repeat", (uint32_t*)&instance->encoder.repeat, 1);
|
||||
|
||||
if(!subghz_protocol_encoder_dickert_mahs_get_upload(instance)) {
|
||||
ret = SubGhzProtocolStatusErrorEncoderGetUpload;
|
||||
break;
|
||||
}
|
||||
instance->encoder.is_running = true;
|
||||
} while(false);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
void subghz_protocol_encoder_dickert_mahs_stop(void* context) {
|
||||
SubGhzProtocolEncoderDickertMAHS* instance = context;
|
||||
instance->encoder.is_running = false;
|
||||
}
|
||||
|
||||
LevelDuration subghz_protocol_encoder_dickert_mahs_yield(void* context) {
|
||||
SubGhzProtocolEncoderDickertMAHS* instance = context;
|
||||
|
||||
if(instance->encoder.repeat == 0 || !instance->encoder.is_running) {
|
||||
instance->encoder.is_running = false;
|
||||
return level_duration_reset();
|
||||
}
|
||||
|
||||
LevelDuration ret = instance->encoder.upload[instance->encoder.front];
|
||||
|
||||
if(++instance->encoder.front == instance->encoder.size_upload) {
|
||||
instance->encoder.repeat--;
|
||||
instance->encoder.front = 0;
|
||||
}
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
void* subghz_protocol_decoder_dickert_mahs_alloc(SubGhzEnvironment* environment) {
|
||||
UNUSED(environment);
|
||||
SubGhzProtocolDecoderDickertMAHS* instance = malloc(sizeof(SubGhzProtocolDecoderDickertMAHS));
|
||||
instance->base.protocol = &subghz_protocol_dickert_mahs;
|
||||
instance->generic.protocol_name = instance->base.protocol->name;
|
||||
instance->tmp_cnt = 0;
|
||||
|
||||
return instance;
|
||||
}
|
||||
|
||||
void subghz_protocol_decoder_dickert_mahs_free(void* context) {
|
||||
furi_assert(context);
|
||||
SubGhzProtocolDecoderDickertMAHS* instance = context;
|
||||
free(instance);
|
||||
}
|
||||
|
||||
void subghz_protocol_decoder_dickert_mahs_reset(void* context) {
|
||||
furi_assert(context);
|
||||
SubGhzProtocolDecoderDickertMAHS* instance = context;
|
||||
instance->decoder.parser_step = DickertMAHSDecoderStepReset;
|
||||
}
|
||||
|
||||
void subghz_protocol_decoder_dickert_mahs_feed(void* context, bool level, uint32_t duration) {
|
||||
furi_assert(context);
|
||||
SubGhzProtocolDecoderDickertMAHS* instance = context;
|
||||
|
||||
switch(instance->decoder.parser_step) {
|
||||
case DickertMAHSDecoderStepReset:
|
||||
// Check if done
|
||||
if(instance->decoder.decode_count_bit >=
|
||||
subghz_protocol_dickert_mahs_const.min_count_bit_for_found) {
|
||||
instance->generic.serial = 0x0;
|
||||
instance->generic.btn = 0x0;
|
||||
|
||||
instance->generic.data = instance->decoder.decode_data;
|
||||
instance->generic.data_count_bit = instance->decoder.decode_count_bit;
|
||||
|
||||
if(instance->base.callback)
|
||||
instance->base.callback(&instance->base, instance->base.context);
|
||||
|
||||
instance->decoder.decode_data = 0;
|
||||
instance->decoder.decode_count_bit = 0;
|
||||
}
|
||||
|
||||
if((!level) && (duration > 10 * subghz_protocol_dickert_mahs_const.te_short)) {
|
||||
//Found header DICKERT_MAHS
|
||||
instance->decoder.parser_step = DickertMAHSDecoderStepInitial;
|
||||
}
|
||||
break;
|
||||
case DickertMAHSDecoderStepInitial:
|
||||
if(!level) {
|
||||
break;
|
||||
} else if(
|
||||
DURATION_DIFF(duration, subghz_protocol_dickert_mahs_const.te_short) <
|
||||
subghz_protocol_dickert_mahs_const.te_delta) {
|
||||
//Found start bit DICKERT_MAHS
|
||||
instance->decoder.parser_step = DickertMAHSDecoderStepRecording;
|
||||
instance->decoder.decode_data = 0;
|
||||
instance->decoder.decode_count_bit = 0;
|
||||
} else {
|
||||
instance->decoder.parser_step = DickertMAHSDecoderStepReset;
|
||||
}
|
||||
break;
|
||||
case DickertMAHSDecoderStepRecording:
|
||||
if((!level && instance->tmp_cnt == 0) || (level && instance->tmp_cnt == 1)) {
|
||||
instance->tmp[instance->tmp_cnt] = duration;
|
||||
|
||||
instance->tmp_cnt++;
|
||||
|
||||
if(instance->tmp_cnt == 2) {
|
||||
if(DURATION_DIFF(instance->tmp[0] + instance->tmp[1], 1200) <
|
||||
subghz_protocol_dickert_mahs_const.te_delta) {
|
||||
if(DURATION_DIFF(instance->tmp[0], subghz_protocol_dickert_mahs_const.te_long) <
|
||||
subghz_protocol_dickert_mahs_const.te_delta) {
|
||||
subghz_protocol_blocks_add_bit(&instance->decoder, 1);
|
||||
} else if(
|
||||
DURATION_DIFF(
|
||||
instance->tmp[0], subghz_protocol_dickert_mahs_const.te_short) <
|
||||
subghz_protocol_dickert_mahs_const.te_delta) {
|
||||
subghz_protocol_blocks_add_bit(&instance->decoder, 0);
|
||||
}
|
||||
|
||||
instance->tmp_cnt = 0;
|
||||
} else {
|
||||
instance->tmp_cnt = 0;
|
||||
instance->decoder.parser_step = DickertMAHSDecoderStepReset;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
instance->tmp_cnt = 0;
|
||||
instance->decoder.parser_step = DickertMAHSDecoderStepReset;
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
uint8_t subghz_protocol_decoder_dickert_mahs_get_hash_data(void* context) {
|
||||
furi_assert(context);
|
||||
SubGhzProtocolDecoderDickertMAHS* instance = context;
|
||||
return subghz_protocol_blocks_get_hash_data(
|
||||
&instance->decoder, (instance->decoder.decode_count_bit / 8) + 1);
|
||||
}
|
||||
|
||||
SubGhzProtocolStatus subghz_protocol_decoder_dickert_mahs_serialize(
|
||||
void* context,
|
||||
FlipperFormat* flipper_format,
|
||||
SubGhzRadioPreset* preset) {
|
||||
furi_assert(context);
|
||||
SubGhzProtocolDecoderDickertMAHS* instance = context;
|
||||
return subghz_block_generic_serialize(&instance->generic, flipper_format, preset);
|
||||
}
|
||||
|
||||
SubGhzProtocolStatus
|
||||
subghz_protocol_decoder_dickert_mahs_deserialize(void* context, FlipperFormat* flipper_format) {
|
||||
furi_assert(context);
|
||||
SubGhzProtocolDecoderDickertMAHS* instance = context;
|
||||
SubGhzProtocolStatus ret = SubGhzProtocolStatusError;
|
||||
do {
|
||||
ret = subghz_block_generic_deserialize(&instance->generic, flipper_format);
|
||||
if(ret != SubGhzProtocolStatusOk) {
|
||||
break;
|
||||
}
|
||||
|
||||
// Allow for longer keys (<) instead of !=
|
||||
if((instance->generic.data_count_bit <
|
||||
subghz_protocol_dickert_mahs_const.min_count_bit_for_found)) {
|
||||
FURI_LOG_E(TAG, "Wrong number of bits in key");
|
||||
ret = SubGhzProtocolStatusErrorValueBitCount;
|
||||
break;
|
||||
}
|
||||
} while(false);
|
||||
return ret;
|
||||
}
|
||||
|
||||
void subghz_protocol_decoder_dickert_mahs_get_string(void* context, FuriString* output) {
|
||||
furi_assert(context);
|
||||
subghz_protocol_encoder_dickert_mahs_parse_buffer(context, output);
|
||||
}
|
||||
120
lib/subghz/protocols/dickert_mahs.h
Normal file
120
lib/subghz/protocols/dickert_mahs.h
Normal file
@@ -0,0 +1,120 @@
|
||||
#pragma once
|
||||
|
||||
#include "base.h"
|
||||
|
||||
#define SUBGHZ_PROTOCOL_DICKERT_MAHS_NAME "Dickert_MAHS"
|
||||
|
||||
typedef struct SubGhzProtocolDecoderDickertMAHS SubGhzProtocolDecoderDickertMAHS;
|
||||
typedef struct SubGhzProtocolEncoderDickertMAHS SubGhzProtocolEncoderDickertMAHS;
|
||||
|
||||
extern const SubGhzProtocolDecoder subghz_protocol_dickert_mahs_decoder;
|
||||
extern const SubGhzProtocolEncoder subghz_protocol_dickert_mahs_encoder;
|
||||
extern const SubGhzProtocol subghz_protocol_dickert_mahs;
|
||||
|
||||
/** Allocate SubGhzProtocolEncoderDickertMAHS.
|
||||
*
|
||||
* @param environment Pointer to a SubGhzEnvironment instance
|
||||
*
|
||||
* @return pointer to a SubGhzProtocolEncoderDickertMAHS instance
|
||||
*/
|
||||
void* subghz_protocol_encoder_dickert_mahs_alloc(SubGhzEnvironment* environment);
|
||||
|
||||
/** Free SubGhzProtocolEncoderDickertMAHS.
|
||||
*
|
||||
* @param context Pointer to a SubGhzProtocolEncoderDickertMAHS instance
|
||||
*/
|
||||
void subghz_protocol_encoder_dickert_mahs_free(void* context);
|
||||
|
||||
/** Deserialize and generating an upload to send.
|
||||
*
|
||||
* @param context Pointer to a SubGhzProtocolEncoderDickertMAHS
|
||||
* instance
|
||||
* @param flipper_format Pointer to a FlipperFormat instance
|
||||
*
|
||||
* @return status
|
||||
*/
|
||||
SubGhzProtocolStatus
|
||||
subghz_protocol_encoder_dickert_mahs_deserialize(void* context, FlipperFormat* flipper_format);
|
||||
|
||||
/** Forced transmission stop.
|
||||
*
|
||||
* @param context Pointer to a SubGhzProtocolEncoderDickertMAHS instance
|
||||
*/
|
||||
void subghz_protocol_encoder_dickert_mahs_stop(void* context);
|
||||
|
||||
/** Getting the level and duration of the upload to be loaded into DMA.
|
||||
*
|
||||
* @param context Pointer to a SubGhzProtocolEncoderDickertMAHS instance
|
||||
*
|
||||
* @return LevelDuration
|
||||
*/
|
||||
LevelDuration subghz_protocol_encoder_dickert_mahs_yield(void* context);
|
||||
|
||||
/** Allocate SubGhzProtocolDecoderDickertMAHS.
|
||||
*
|
||||
* @param environment Pointer to a SubGhzEnvironment instance
|
||||
*
|
||||
* @return pointer to a SubGhzProtocolDecoderDickertMAHS instance
|
||||
*/
|
||||
void* subghz_protocol_decoder_dickert_mahs_alloc(SubGhzEnvironment* environment);
|
||||
|
||||
/** Free SubGhzProtocolDecoderDickertMAHS.
|
||||
*
|
||||
* @param context Pointer to a SubGhzProtocolDecoderDickertMAHS instance
|
||||
*/
|
||||
void subghz_protocol_decoder_dickert_mahs_free(void* context);
|
||||
|
||||
/** Reset decoder SubGhzProtocolDecoderDickertMAHS.
|
||||
*
|
||||
* @param context Pointer to a SubGhzProtocolDecoderDickertMAHS instance
|
||||
*/
|
||||
void subghz_protocol_decoder_dickert_mahs_reset(void* context);
|
||||
|
||||
/** Parse a raw sequence of levels and durations received from the air.
|
||||
*
|
||||
* @param context Pointer to a SubGhzProtocolDecoderDickertMAHS instance
|
||||
* @param level Signal level true-high false-low
|
||||
* @param duration Duration of this level in, us
|
||||
*/
|
||||
void subghz_protocol_decoder_dickert_mahs_feed(void* context, bool level, uint32_t duration);
|
||||
|
||||
/** Getting the hash sum of the last randomly received parcel.
|
||||
*
|
||||
* @param context Pointer to a SubGhzProtocolDecoderDickertMAHS instance
|
||||
*
|
||||
* @return hash Hash sum
|
||||
*/
|
||||
uint8_t subghz_protocol_decoder_dickert_mahs_get_hash_data(void* context);
|
||||
|
||||
/** Serialize data SubGhzProtocolDecoderDickertMAHS.
|
||||
*
|
||||
* @param context Pointer to a SubGhzProtocolDecoderDickertMAHS
|
||||
* instance
|
||||
* @param flipper_format Pointer to a FlipperFormat instance
|
||||
* @param preset The modulation on which the signal was received,
|
||||
* SubGhzRadioPreset
|
||||
*
|
||||
* @return status
|
||||
*/
|
||||
SubGhzProtocolStatus subghz_protocol_decoder_dickert_mahs_serialize(
|
||||
void* context,
|
||||
FlipperFormat* flipper_format,
|
||||
SubGhzRadioPreset* preset);
|
||||
|
||||
/** Deserialize data SubGhzProtocolDecoderDickertMAHS.
|
||||
*
|
||||
* @param context Pointer to a SubGhzProtocolDecoderDickertMAHS
|
||||
* instance
|
||||
* @param flipper_format Pointer to a FlipperFormat instance
|
||||
*
|
||||
* @return status
|
||||
*/
|
||||
SubGhzProtocolStatus
|
||||
subghz_protocol_decoder_dickert_mahs_deserialize(void* context, FlipperFormat* flipper_format);
|
||||
|
||||
/** Getting a textual representation of the received data.
|
||||
*
|
||||
* @param context Pointer to a SubGhzProtocolDecoderDickertMAHS instance
|
||||
* @param output Resulting text
|
||||
*/
|
||||
void subghz_protocol_decoder_dickert_mahs_get_string(void* context, FuriString* output);
|
||||
@@ -44,6 +44,7 @@ const SubGhzProtocol* subghz_protocol_registry_items[] = {
|
||||
&subghz_protocol_kinggates_stylo_4k,
|
||||
&subghz_protocol_bin_raw,
|
||||
&subghz_protocol_mastercode,
|
||||
&subghz_protocol_dickert_mahs,
|
||||
};
|
||||
|
||||
const SubGhzProtocolRegistry subghz_protocol_registry = {
|
||||
|
||||
@@ -45,3 +45,4 @@
|
||||
#include "kinggates_stylo_4k.h"
|
||||
#include "bin_raw.h"
|
||||
#include "mastercode.h"
|
||||
#include "dickert_mahs.h"
|
||||
|
||||
Reference in New Issue
Block a user