myRadio_setting.h 676 B

123456789101112131415161718192021222324252627282930
  1. #ifndef __MYRADIOSETTING_H
  2. #define __MYRADIOSETTING_H
  3. #include <stdint.h>
  4. #include <string.h>
  5. #include "radio.h"
  6. #include "si446x_patch.h"
  7. typedef enum
  8. {
  9. CHIP_SI4438_C2A_433,//
  10. CHIP_SI4438_C2A_490,
  11. CHIP_SI4463_C2A_433,
  12. CHIP_SI4463_C2A_490,
  13. CHIP_SI4463_C2A_868,
  14. CHIP_SI4463_C2A_915,//
  15. CHIP_SI4438_B1B_433,//
  16. CHIP_SI4438_B1B_490,
  17. CHIP_SI4463_B1B_433,
  18. CHIP_SI4463_B1B_868,
  19. CHIP_SI4463_B1B_915,//
  20. CHIP_CUSTOM,
  21. CHIP_COUNT_MAX,
  22. }chipType_te;
  23. extern tRadioConfiguration RadioConfiguration_setting[CHIP_COUNT_MAX];
  24. extern tRadioConfiguration RadioConfiguration_dr_setting[CHIP_COUNT_MAX];
  25. #endif