mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-19 01:03:22 +00:00
18 lines
222 B
C
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
|