#pragma once #include #include #include #include #include "tpms_generic.h" #include #define TPMS_PROTOCOL_SCHRADER_GG4_NAME "Schrader GG4" typedef struct TPMSProtocolDecoderSchraderGG4 TPMSProtocolDecoderSchraderGG4; typedef struct TPMSProtocolEncoderSchraderGG4 TPMSProtocolEncoderSchraderGG4; extern const SubGhzProtocolDecoder tpms_protocol_schrader_gg4_decoder; extern const SubGhzProtocolEncoder tpms_protocol_schrader_gg4_encoder; extern const SubGhzProtocol tpms_protocol_schrader_gg4; /** * Allocate TPMSProtocolDecoderSchraderGG4. * @param environment Pointer to a SubGhzEnvironment instance * @return TPMSProtocolDecoderSchraderGG4* pointer to a TPMSProtocolDecoderSchraderGG4 instance */ void* tpms_protocol_decoder_schrader_gg4_alloc(SubGhzEnvironment* environment); /** * Free TPMSProtocolDecoderSchraderGG4. * @param context Pointer to a TPMSProtocolDecoderSchraderGG4 instance */ void tpms_protocol_decoder_schrader_gg4_free(void* context); /** * Reset decoder TPMSProtocolDecoderSchraderGG4. * @param context Pointer to a TPMSProtocolDecoderSchraderGG4 instance */ void tpms_protocol_decoder_schrader_gg4_reset(void* context); /** * Parse a raw sequence of levels and durations received from the air. * @param context Pointer to a TPMSProtocolDecoderSchraderGG4 instance * @param level Signal level true-high false-low * @param duration Duration of this level in, us */ void tpms_protocol_decoder_schrader_gg4_feed(void* context, bool level, uint32_t duration); /** * Getting the hash sum of the last randomly received parcel. * @param context Pointer to a TPMSProtocolDecoderSchraderGG4 instance * @return hash Hash sum */ uint32_t tpms_protocol_decoder_schrader_gg4_get_hash_data(void* context); /** * Serialize data TPMSProtocolDecoderSchraderGG4. * @param context Pointer to a TPMSProtocolDecoderSchraderGG4 instance * @param flipper_format Pointer to a FlipperFormat instance * @param preset The modulation on which the signal was received, SubGhzRadioPreset * @return status */ SubGhzProtocolStatus tpms_protocol_decoder_schrader_gg4_serialize( void* context, FlipperFormat* flipper_format, SubGhzRadioPreset* preset); /** * Deserialize data TPMSProtocolDecoderSchraderGG4. * @param context Pointer to a TPMSProtocolDecoderSchraderGG4 instance * @param flipper_format Pointer to a FlipperFormat instance * @return status */ SubGhzProtocolStatus tpms_protocol_decoder_schrader_gg4_deserialize(void* context, FlipperFormat* flipper_format); /** * Getting a textual representation of the received data. * @param context Pointer to a TPMSProtocolDecoderSchraderGG4 instance * @param output Resulting text */ void tpms_protocol_decoder_schrader_gg4_get_string(void* context, FuriString* output);