2022-03-03 09:48:56 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "base.h"
|
|
|
|
|
2022-09-14 13:01:30 +00:00
|
|
|
#include <furi_hal.h>
|
|
|
|
|
2022-09-16 14:30:07 +00:00
|
|
|
#define SUBGHZ_PROTOCOL_RAW_NAME "RAW"
|
|
|
|
|
2022-09-14 22:14:55 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2022-03-03 09:48:56 +00:00
|
|
|
typedef void (*SubGhzProtocolEncoderRAWCallbackEnd)(void* context);
|
|
|
|
|
|
|
|
typedef struct SubGhzProtocolDecoderRAW SubGhzProtocolDecoderRAW;
|
|
|
|
typedef struct SubGhzProtocolEncoderRAW SubGhzProtocolEncoderRAW;
|
|
|
|
|
|
|
|
extern const SubGhzProtocolDecoder subghz_protocol_raw_decoder;
|
|
|
|
extern const SubGhzProtocolEncoder subghz_protocol_raw_encoder;
|
|
|
|
extern const SubGhzProtocol subghz_protocol_raw;
|
|
|
|
|
2022-03-16 09:18:48 +00:00
|
|
|
/**
|
|
|
|
* Open file for writing
|
|
|
|
* @param instance Pointer to a SubGhzProtocolDecoderRAW instance
|
|
|
|
* @param dev_name File name
|
2022-10-19 15:52:21 +00:00
|
|
|
* @param preset The modulation on which the signal was received, SubGhzRadioPreset
|
2022-03-16 09:18:48 +00:00
|
|
|
* @return true On success
|
|
|
|
*/
|
2022-03-03 09:48:56 +00:00
|
|
|
bool subghz_protocol_raw_save_to_file_init(
|
|
|
|
SubGhzProtocolDecoderRAW* instance,
|
|
|
|
const char* dev_name,
|
2022-10-19 15:52:21 +00:00
|
|
|
SubGhzRadioPreset* preset);
|
2022-03-03 09:48:56 +00:00
|
|
|
|
2022-09-14 13:01:30 +00:00
|
|
|
/**
|
|
|
|
* Set SubGhzProtocolDecoderRAW to auto mode, which allows subghz_scene_receiver to capture RAW.
|
|
|
|
* @param context Pointer to a SubGhzProtocolDecoderRAW instance
|
|
|
|
* @param auto_mode Whether or not to enable auto mode
|
|
|
|
*/
|
|
|
|
void subghz_protocol_decoder_raw_set_auto_mode(void* context, bool auto_mode);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set RSSI threshold ("sensitivity" level).
|
|
|
|
* @param context Pointer to a SubGhzProtocolDecoderRAW instance
|
|
|
|
* @param rssi_threshold The desired RSSI threshold
|
|
|
|
*/
|
|
|
|
void subghz_protocol_decoder_raw_set_rssi_threshold(void* context, int rssi_threshold);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get RSSI threshold ("sensitivity" level).
|
|
|
|
* @param context Pointer to a SubGhzProtocolDecoderRAW instance
|
|
|
|
* @return rssi threshold in db
|
|
|
|
*/
|
|
|
|
int subghz_protocol_encoder_get_rssi_threshold(void* context);
|
|
|
|
|
2022-03-16 09:18:48 +00:00
|
|
|
/**
|
|
|
|
* Stop writing file to flash
|
|
|
|
* @param instance Pointer to a SubGhzProtocolDecoderRAW instance
|
|
|
|
*/
|
2022-03-03 09:48:56 +00:00
|
|
|
void subghz_protocol_raw_save_to_file_stop(SubGhzProtocolDecoderRAW* instance);
|
2022-03-16 09:18:48 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the number of samples received SubGhzProtocolDecoderRAW.
|
|
|
|
* @param instance Pointer to a SubGhzProtocolDecoderRAW instance
|
|
|
|
* @return count of samples
|
|
|
|
*/
|
2022-03-03 09:48:56 +00:00
|
|
|
size_t subghz_protocol_raw_get_sample_write(SubGhzProtocolDecoderRAW* instance);
|
2022-03-16 09:18:48 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Allocate SubGhzProtocolDecoderRAW.
|
|
|
|
* @param environment Pointer to a SubGhzEnvironment instance
|
|
|
|
* @return SubGhzProtocolDecoderRAW* pointer to a SubGhzProtocolDecoderRAW instance
|
|
|
|
*/
|
2022-03-03 09:48:56 +00:00
|
|
|
void* subghz_protocol_decoder_raw_alloc(SubGhzEnvironment* environment);
|
2022-03-16 09:18:48 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Free SubGhzProtocolDecoderRAW.
|
|
|
|
* @param context Pointer to a SubGhzProtocolDecoderRAW instance
|
|
|
|
*/
|
2022-03-03 09:48:56 +00:00
|
|
|
void subghz_protocol_decoder_raw_free(void* context);
|
2022-03-16 09:18:48 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Reset decoder SubGhzProtocolDecoderRAW.
|
|
|
|
* @param context Pointer to a SubGhzProtocolDecoderRAW instance
|
|
|
|
*/
|
2022-03-03 09:48:56 +00:00
|
|
|
void subghz_protocol_decoder_raw_reset(void* context);
|
2022-03-16 09:18:48 +00:00
|
|
|
|
2022-09-14 13:01:30 +00:00
|
|
|
/**
|
|
|
|
* Write raw data to the instance's internal buffer.
|
|
|
|
* @param context Pointer to a SubGhzProtocolDecoderRAW instance
|
|
|
|
* @param level Signal level true-high false-low
|
|
|
|
* @param duration Duration of this level in, us
|
|
|
|
* @return whether or not data was written
|
|
|
|
*/
|
|
|
|
bool subghz_protocol_decoder_raw_write_data(void* context, bool level, uint32_t duration);
|
|
|
|
|
2022-03-16 09:18:48 +00:00
|
|
|
/**
|
|
|
|
* Parse a raw sequence of levels and durations received from the air.
|
|
|
|
* @param context Pointer to a SubGhzProtocolDecoderRAW instance
|
|
|
|
* @param level Signal level true-high false-low
|
|
|
|
* @param duration Duration of this level in, us
|
|
|
|
*/
|
2022-03-03 09:48:56 +00:00
|
|
|
void subghz_protocol_decoder_raw_feed(void* context, bool level, uint32_t duration);
|
2022-03-16 09:18:48 +00:00
|
|
|
|
2022-08-01 12:24:21 +00:00
|
|
|
/**
|
|
|
|
* Deserialize data SubGhzProtocolDecoderRAW.
|
2022-09-14 13:01:30 +00:00
|
|
|
* @param context Pointer to a SubGhzProtocolDecoderRAW instance
|
|
|
|
* @param flipper_format Pointer to a FlipperFormat instance
|
2022-08-01 12:24:21 +00:00
|
|
|
* @return true On success
|
|
|
|
*/
|
|
|
|
bool subghz_protocol_decoder_raw_deserialize(void* context, FlipperFormat* flipper_format);
|
|
|
|
|
2022-09-14 13:01:30 +00:00
|
|
|
/**
|
|
|
|
* Getting the hash sum of the last randomly received parcel.
|
|
|
|
* @param context Pointer to a SubGhzProtocolDecoderRAW instance
|
|
|
|
* @return hash Hash sum
|
|
|
|
*/
|
|
|
|
uint8_t subghz_protocol_decoder_raw_get_hash_data(void* context);
|
|
|
|
|
2022-03-16 09:18:48 +00:00
|
|
|
/**
|
|
|
|
* Getting a textual representation of the received data.
|
|
|
|
* @param context Pointer to a SubGhzProtocolDecoderRAW instance
|
|
|
|
* @param output Resulting text
|
|
|
|
*/
|
2022-10-05 15:15:23 +00:00
|
|
|
void subghz_protocol_decoder_raw_get_string(void* context, FuriString* output);
|
2022-03-03 09:48:56 +00:00
|
|
|
|
2022-03-16 09:18:48 +00:00
|
|
|
/**
|
|
|
|
* Allocate SubGhzProtocolEncoderRAW.
|
|
|
|
* @param environment Pointer to a SubGhzEnvironment instance
|
|
|
|
* @return SubGhzProtocolEncoderRAW* pointer to a SubGhzProtocolEncoderRAW instance
|
|
|
|
*/
|
2022-03-03 09:48:56 +00:00
|
|
|
void* subghz_protocol_encoder_raw_alloc(SubGhzEnvironment* environment);
|
2022-03-16 09:18:48 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Free SubGhzProtocolEncoderRAW.
|
|
|
|
* @param context Pointer to a SubGhzProtocolEncoderRAW instance
|
|
|
|
*/
|
2022-03-03 09:48:56 +00:00
|
|
|
void subghz_protocol_encoder_raw_free(void* context);
|
2022-03-16 09:18:48 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Forced transmission stop.
|
|
|
|
* @param context Pointer to a SubGhzProtocolEncoderRAW instance
|
|
|
|
*/
|
2022-03-03 09:48:56 +00:00
|
|
|
void subghz_protocol_encoder_raw_stop(void* context);
|
2022-03-16 09:18:48 +00:00
|
|
|
|
2022-10-26 15:13:00 +00:00
|
|
|
/**
|
|
|
|
* pause writing to flash.
|
|
|
|
* @param context Pointer to a SubGhzProtocolEncoderRAW instance
|
|
|
|
* @param pause pause writing
|
|
|
|
*/
|
|
|
|
void subghz_protocol_raw_save_to_file_pause(SubGhzProtocolDecoderRAW* instance, bool pause);
|
|
|
|
|
2022-03-16 09:18:48 +00:00
|
|
|
/**
|
|
|
|
* Set callback on completion of file transfer.
|
|
|
|
* @param instance Pointer to a SubGhzProtocolEncoderRAW instance
|
|
|
|
* @param callback_end Callback, SubGhzProtocolEncoderRAWCallbackEnd
|
|
|
|
* @param context_end Context
|
|
|
|
*/
|
2022-03-03 09:48:56 +00:00
|
|
|
void subghz_protocol_raw_file_encoder_worker_set_callback_end(
|
|
|
|
SubGhzProtocolEncoderRAW* instance,
|
|
|
|
SubGhzProtocolEncoderRAWCallbackEnd callback_end,
|
|
|
|
void* context_end);
|
2022-03-16 09:18:48 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* File generation for RAW work.
|
|
|
|
* @param flipper_format Pointer to a FlipperFormat instance
|
2022-04-21 16:10:50 +00:00
|
|
|
* @param file_path File path
|
2022-03-16 09:18:48 +00:00
|
|
|
*/
|
2022-04-21 16:10:50 +00:00
|
|
|
void subghz_protocol_raw_gen_fff_data(FlipperFormat* flipper_format, const char* file_path);
|
2022-03-16 09:18:48 +00:00
|
|
|
|
2022-09-14 13:01:30 +00:00
|
|
|
/**
|
|
|
|
* Serialize data SubGhzProtocolDecoderRAW.
|
|
|
|
* @param context Pointer to a SubGhzProtocolDecoderRAW instance
|
|
|
|
* @param flipper_format Pointer to a FlipperFormat instance
|
|
|
|
* @param frequency The frequency at which the signal was received, Hz
|
|
|
|
* @param preset The modulation on which the signal was received, FuriHalSubGhzPreset
|
|
|
|
* @return true On success
|
|
|
|
*/
|
|
|
|
bool subghz_protocol_decoder_raw_serialize(
|
|
|
|
void* context,
|
|
|
|
FlipperFormat* flipper_format,
|
2022-10-19 15:52:21 +00:00
|
|
|
SubGhzRadioPreset* preset);
|
2022-09-14 13:01:30 +00:00
|
|
|
|
2022-03-16 09:18:48 +00:00
|
|
|
/**
|
|
|
|
* Deserialize and generating an upload to send.
|
|
|
|
* @param context Pointer to a SubGhzProtocolEncoderRAW instance
|
|
|
|
* @param flipper_format Pointer to a FlipperFormat instance
|
|
|
|
* @return true On success
|
|
|
|
*/
|
2022-03-03 09:48:56 +00:00
|
|
|
bool subghz_protocol_encoder_raw_deserialize(void* context, FlipperFormat* flipper_format);
|
2022-03-16 09:18:48 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Getting the level and duration of the upload to be loaded into DMA.
|
|
|
|
* @param context Pointer to a SubGhzProtocolEncoderRAW instance
|
2022-09-14 13:01:30 +00:00
|
|
|
* @return LevelDuration
|
2022-03-16 09:18:48 +00:00
|
|
|
*/
|
2022-03-03 09:48:56 +00:00
|
|
|
LevelDuration subghz_protocol_encoder_raw_yield(void* context);
|
2022-09-14 22:14:55 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|