2021-02-25 10:29:00 +00:00
|
|
|
#include "api-hal-subghz.h"
|
2021-03-31 17:52:26 +00:00
|
|
|
#include <api-hal-spi.h>
|
|
|
|
#include <cc1101.h>
|
2021-02-25 10:29:00 +00:00
|
|
|
|
2021-03-31 17:52:26 +00:00
|
|
|
void api_hal_subghz_init() {
|
|
|
|
const ApiHalSpiDevice* device = api_hal_spi_device_get(ApiHalSpiDeviceIdSubGhz);
|
|
|
|
cc1101_init(device);
|
|
|
|
api_hal_spi_device_return(device);
|
|
|
|
}
|
|
|
|
|
|
|
|
void api_hal_subghz_band_set(RfBand band) {}
|