mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-23 13:21:44 +03:00
21 lines
311 B
C
21 lines
311 B
C
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <stddef.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct {
|
|
const uint16_t te_long;
|
|
const uint16_t te_short;
|
|
const uint16_t te_delta;
|
|
const uint8_t min_count_bit_for_found;
|
|
} SubGhzBlockConst;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|