cc1200.h 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*
  2. * Copyright (c) 2017 Intel Corporation
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_DRIVERS_IEEE802154_CC1200_H_
  7. #define ZEPHYR_INCLUDE_DRIVERS_IEEE802154_CC1200_H_
  8. #include <device.h>
  9. /* RF settings
  10. *
  11. * First 42 entries are for the 42 first registers from
  12. * address 0x04 to 0x2D included.
  13. * Next, the last 58 entries are for the 58 registers from
  14. * extended address 0x00 to 0x39 included
  15. *
  16. * If CONFIG_IEEE802154_CC1200_RF_PRESET is not used, one will need
  17. * to provide 'cc1200_rf_settings' with proper settings. These can
  18. * be generated through TI's SmartRF application.
  19. *
  20. */
  21. struct cc1200_rf_registers_set {
  22. uint32_t chan_center_freq0;
  23. uint16_t channel_limit;
  24. /* to fit in uint16_t, spacing is a multiple of 100 Hz,
  25. * 12.5KHz for instance will be 125.
  26. */
  27. uint16_t channel_spacing;
  28. uint8_t registers[100];
  29. };
  30. #ifndef CONFIG_IEEE802154_CC1200_RF_PRESET
  31. extern const struct cc1200_rf_registers_set cc1200_rf_settings;
  32. #endif
  33. #endif /* ZEPHYR_INCLUDE_DRIVERS_IEEE802154_CC1200_H_ */