163be139eb
* SubGhz: add protocol DataRAW (binarization of data quantized by the minimum correlated duration) * SubGhz: fix name history * SubGhz: add encoder Data_RAW protocol * SubGhz: decreasing the size of the LevelDuration structure * SubGhz: history, added check that there is free RAM * SubGhz: checking for free memory, support to pass without gap * SubGhz: add running average to average the result, auto cut noise at the end of a burst * SubGhz: support for repeating sequences * SubGhz: fix secplus_v2 decoder * SubGhz: bin_RAW fix add history * SubGhz: add debug * SubGhz: debug refactoring * FURI_LOG: add FURI_LOG_RAW_x formatted string output like printf * SubGhz: fix new FURI_LOG metod * FURI_LOG: fix unit test * SubGhz: add enable/disable BinRAW protocol decoding * SubGhz: fix PVS * SubGhz: forcibly turn off the speaker when exiting SubGhz * SubGhz: adaptive adjustment to the noise level Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
48 lines
1.0 KiB
C
48 lines
1.0 KiB
C
#pragma once
|
|
#include "../registry.h"
|
|
|
|
#include "princeton.h"
|
|
#include "keeloq.h"
|
|
#include "star_line.h"
|
|
#include "nice_flo.h"
|
|
#include "came.h"
|
|
#include "faac_slh.h"
|
|
#include "nice_flor_s.h"
|
|
#include "came_twee.h"
|
|
#include "came_atomo.h"
|
|
#include "nero_sketch.h"
|
|
#include "ido.h"
|
|
#include "kia.h"
|
|
#include "hormann.h"
|
|
#include "nero_radio.h"
|
|
#include "somfy_telis.h"
|
|
#include "somfy_keytis.h"
|
|
#include "scher_khan.h"
|
|
#include "gate_tx.h"
|
|
#include "raw.h"
|
|
#include "linear.h"
|
|
#include "linear_delta3.h"
|
|
#include "secplus_v2.h"
|
|
#include "secplus_v1.h"
|
|
#include "megacode.h"
|
|
#include "holtek.h"
|
|
#include "chamberlain_code.h"
|
|
#include "power_smart.h"
|
|
#include "marantec.h"
|
|
#include "bett.h"
|
|
#include "doitrand.h"
|
|
#include "phoenix_v2.h"
|
|
#include "honeywell_wdb.h"
|
|
#include "magellan.h"
|
|
#include "intertechno_v3.h"
|
|
#include "clemsa.h"
|
|
#include "ansonic.h"
|
|
#include "smc5326.h"
|
|
#include "holtek_ht12x.h"
|
|
#include "dooya.h"
|
|
#include "alutech_at_4n.h"
|
|
#include "kinggates_stylo_4k.h"
|
|
#include "bin_raw.h"
|
|
|
|
extern const SubGhzProtocolRegistry subghz_protocol_registry;
|