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>
83 lines
2.2 KiB
C
83 lines
2.2 KiB
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
#define LEVEL_DURATION_BIG
|
|
|
|
#ifdef LEVEL_DURATION_BIG
|
|
|
|
#define LEVEL_DURATION_RESET 0U
|
|
#define LEVEL_DURATION_LEVEL_LOW 1U
|
|
#define LEVEL_DURATION_LEVEL_HIGH 2U
|
|
#define LEVEL_DURATION_WAIT 3U
|
|
#define LEVEL_DURATION_RESERVED 0x800000U
|
|
|
|
typedef struct {
|
|
uint32_t duration : 30;
|
|
uint8_t level : 2;
|
|
} LevelDuration;
|
|
|
|
static inline LevelDuration level_duration_make(bool level, uint32_t duration) {
|
|
LevelDuration level_duration;
|
|
level_duration.level = level ? LEVEL_DURATION_LEVEL_HIGH : LEVEL_DURATION_LEVEL_LOW;
|
|
level_duration.duration = duration;
|
|
return level_duration;
|
|
}
|
|
|
|
static inline LevelDuration level_duration_reset() {
|
|
LevelDuration level_duration;
|
|
level_duration.level = LEVEL_DURATION_RESET;
|
|
return level_duration;
|
|
}
|
|
|
|
static inline LevelDuration level_duration_wait() {
|
|
LevelDuration level_duration;
|
|
level_duration.level = LEVEL_DURATION_WAIT;
|
|
return level_duration;
|
|
}
|
|
|
|
static inline bool level_duration_is_reset(LevelDuration level_duration) {
|
|
return level_duration.level == LEVEL_DURATION_RESET;
|
|
}
|
|
|
|
static inline bool level_duration_is_wait(LevelDuration level_duration) {
|
|
return level_duration.level == LEVEL_DURATION_WAIT;
|
|
}
|
|
|
|
static inline bool level_duration_get_level(LevelDuration level_duration) {
|
|
return level_duration.level == LEVEL_DURATION_LEVEL_HIGH;
|
|
}
|
|
|
|
static inline uint32_t level_duration_get_duration(LevelDuration level_duration) {
|
|
return level_duration.duration;
|
|
}
|
|
|
|
#else
|
|
|
|
#define LEVEL_DURATION_RESET 0U
|
|
#define LEVEL_DURATION_RESERVED 0x800000U
|
|
|
|
typedef int32_t LevelDuration;
|
|
|
|
static inline LevelDuration level_duration(bool level, uint32_t duration) {
|
|
return level ? duration : -(int32_t)duration;
|
|
}
|
|
|
|
static inline LevelDuration level_duration_reset() {
|
|
return LEVEL_DURATION_RESET;
|
|
}
|
|
|
|
static inline bool level_duration_is_reset(LevelDuration level_duration) {
|
|
return (level_duration == LEVEL_DURATION_RESET);
|
|
}
|
|
|
|
static inline bool level_duration_get_level(LevelDuration level_duration) {
|
|
return (level_duration > 0);
|
|
}
|
|
|
|
static inline uint32_t level_duration_get_duration(LevelDuration level_duration) {
|
|
return (level_duration >= 0) ? level_duration : -level_duration;
|
|
}
|
|
|
|
#endif
|