flipperzero-firmware/firmware/targets/api-hal-include/api-hal-subghz.h
coreglitch 2fbf427e0a
Switch sub-1GHz band (#349)
* switch band
* extract subghz api to files
2021-02-25 13:29:00 +03:00

18 lines
222 B
C

#pragma once
#ifdef __cplusplus
extern "C" {
#endif
typedef enum {
RfBandIsolation = 0,
RfBand1 = 1,
RfBand2 = 2,
RfBand3 = 3
} RfBand;
void api_hal_rf_band_set(RfBand band);
#ifdef __cplusplus
}
#endif