1234567891011121314151617181920212223242526272829303132333435363738 |
- #ifndef ZEPHYR_INCLUDE_DRIVERS_IEEE802154_CC1200_H_
- #define ZEPHYR_INCLUDE_DRIVERS_IEEE802154_CC1200_H_
- #include <device.h>
- struct cc1200_rf_registers_set {
- uint32_t chan_center_freq0;
- uint16_t channel_limit;
-
- uint16_t channel_spacing;
- uint8_t registers[100];
- };
- #ifndef CONFIG_IEEE802154_CC1200_RF_PRESET
- extern const struct cc1200_rf_registers_set cc1200_rf_settings;
- #endif
- #endif
|