4ce41a3e6f
* SubGhz: changing the operation of the capture timer, and the logic of the work of parsers * Add toolbox lib. Move levels to toolbox. Subghz switch to levels. * Subghz: update worker signatures * SubGhz: pluggable level duration implementations. * SubGhz : test drawing pictures in Gui * SubGhz: Added a callback with the parser structure as argument * SubGhz: copy protocol data to model * SubGhz: refactoing code * SubGhz: cleanup and format sources * SubGhz: remove comments Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com> Co-authored-by: DrZlo13 <who.just.the.doctor@gmail.com>
71 lines
1.8 KiB
C
71 lines
1.8 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_RESERVED 0x800000U
|
|
|
|
typedef struct {
|
|
uint32_t level;
|
|
uint32_t duration;
|
|
} 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 bool level_duration_is_reset(LevelDuration level_duration) {
|
|
return level_duration.level == LEVEL_DURATION_RESET;
|
|
}
|
|
|
|
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 |