api-hal-subghz.h 297 B

1234567891011121314151617181920212223
  1. #pragma once
  2. #ifdef __cplusplus
  3. extern "C" {
  4. #endif
  5. /** Sub-GHz band type */
  6. typedef enum {
  7. RfBandIsolation = 0,
  8. RfBand1 = 1,
  9. RfBand2 = 2,
  10. RfBand3 = 3
  11. } RfBand;
  12. /**
  13. * Set Sub-GHz band
  14. * @param band RfBand
  15. */
  16. void api_hal_rf_band_set(RfBand band);
  17. #ifdef __cplusplus
  18. }
  19. #endif