2021-02-25 10:29:00 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2021-03-24 09:35:33 +00:00
|
|
|
/** Sub-GHz band type */
|
2021-02-25 10:29:00 +00:00
|
|
|
typedef enum {
|
|
|
|
RfBandIsolation = 0,
|
|
|
|
RfBand1 = 1,
|
|
|
|
RfBand2 = 2,
|
|
|
|
RfBand3 = 3
|
|
|
|
} RfBand;
|
|
|
|
|
2021-03-24 09:35:33 +00:00
|
|
|
/**
|
|
|
|
* Set Sub-GHz band
|
|
|
|
* @param band RfBand
|
|
|
|
*/
|
2021-02-25 10:29:00 +00:00
|
|
|
void api_hal_rf_band_set(RfBand band);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|