Fix auriol protocol naming

This commit is contained in:
MX
2022-11-27 17:07:51 +03:00
parent 7ed56fca54
commit 43d35b42e5
2 changed files with 29 additions and 29 deletions

View File

@@ -8,37 +8,37 @@
#include "ws_generic.h"
#include <lib/subghz/blocks/math.h>
#define WS_PROTOCOL_auriol_TH_NAME "Auriol HG06061" //HG06061A-DCF-TX
#define WS_PROTOCOL_AURIOL_TH_NAME "Auriol HG06061" //HG06061A-DCF-TX
typedef struct WSProtocolDecoderauriol_TH WSProtocolDecoderauriol_TH;
typedef struct WSProtocolEncoderauriol_TH WSProtocolEncoderauriol_TH;
typedef struct WSProtocolDecoderAuriol_TH WSProtocolDecoderAuriol_TH;
typedef struct WSProtocolEncoderAuriol_TH WSProtocolEncoderAuriol_TH;
extern const SubGhzProtocolDecoder ws_protocol_auriol_th_decoder;
extern const SubGhzProtocolEncoder ws_protocol_auriol_th_encoder;
extern const SubGhzProtocol ws_protocol_auriol_th;
/**
* Allocate WSProtocolDecoderauriol_TH.
* Allocate WSProtocolDecoderAuriol_TH.
* @param environment Pointer to a SubGhzEnvironment instance
* @return WSProtocolDecoderauriol_TH* pointer to a WSProtocolDecoderauriol_TH instance
* @return WSProtocolDecoderAuriol_TH* pointer to a WSProtocolDecoderAuriol_TH instance
*/
void* ws_protocol_decoder_auriol_th_alloc(SubGhzEnvironment* environment);
/**
* Free WSProtocolDecoderauriol_TH.
* @param context Pointer to a WSProtocolDecoderauriol_TH instance
* Free WSProtocolDecoderAuriol_TH.
* @param context Pointer to a WSProtocolDecoderAuriol_TH instance
*/
void ws_protocol_decoder_auriol_th_free(void* context);
/**
* Reset decoder WSProtocolDecoderauriol_TH.
* @param context Pointer to a WSProtocolDecoderauriol_TH instance
* Reset decoder WSProtocolDecoderAuriol_TH.
* @param context Pointer to a WSProtocolDecoderAuriol_TH instance
*/
void ws_protocol_decoder_auriol_th_reset(void* context);
/**
* Parse a raw sequence of levels and durations received from the air.
* @param context Pointer to a WSProtocolDecoderauriol_TH instance
* @param context Pointer to a WSProtocolDecoderAuriol_TH instance
* @param level Signal level true-high false-low
* @param duration Duration of this level in, us
*/
@@ -46,14 +46,14 @@ void ws_protocol_decoder_auriol_th_feed(void* context, bool level, uint32_t dura
/**
* Getting the hash sum of the last randomly received parcel.
* @param context Pointer to a WSProtocolDecoderauriol_TH instance
* @param context Pointer to a WSProtocolDecoderAuriol_TH instance
* @return hash Hash sum
*/
uint8_t ws_protocol_decoder_auriol_th_get_hash_data(void* context);
/**
* Serialize data WSProtocolDecoderauriol_TH.
* @param context Pointer to a WSProtocolDecoderauriol_TH instance
* Serialize data WSProtocolDecoderAuriol_TH.
* @param context Pointer to a WSProtocolDecoderAuriol_TH instance
* @param flipper_format Pointer to a FlipperFormat instance
* @param preset The modulation on which the signal was received, SubGhzRadioPreset
* @return true On success
@@ -64,8 +64,8 @@ bool ws_protocol_decoder_auriol_th_serialize(
SubGhzRadioPreset* preset);
/**
* Deserialize data WSProtocolDecoderauriol_TH.
* @param context Pointer to a WSProtocolDecoderauriol_TH instance
* Deserialize data WSProtocolDecoderAuriol_TH.
* @param context Pointer to a WSProtocolDecoderAuriol_TH instance
* @param flipper_format Pointer to a FlipperFormat instance
* @return true On success
*/
@@ -73,7 +73,7 @@ bool ws_protocol_decoder_auriol_th_deserialize(void* context, FlipperFormat* fli
/**
* Getting a textual representation of the received data.
* @param context Pointer to a WSProtocolDecoderauriol_TH instance
* @param context Pointer to a WSProtocolDecoderAuriol_TH instance
* @param output Resulting text
*/
void ws_protocol_decoder_auriol_th_get_string(void* context, FuriString* output);