mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-04 02:09:12 +00:00
84d12da45a
OFW PR 1833 by Skorpionm
20 lines
No EOL
310 B
C
20 lines
No EOL
310 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 |