const.h 310 B

1234567891011121314151617181920
  1. #pragma once
  2. #include <stdbool.h>
  3. #include <stdint.h>
  4. #include <stddef.h>
  5. #ifdef __cplusplus
  6. extern "C" {
  7. #endif
  8. typedef struct {
  9. const uint16_t te_long;
  10. const uint16_t te_short;
  11. const uint16_t te_delta;
  12. const uint8_t min_count_bit_for_found;
  13. } SubGhzBlockConst;
  14. #ifdef __cplusplus
  15. }
  16. #endif