123456789101112131415161718192021222324252627282930 |
- #ifndef __MYRADIOSETTING_H
- #define __MYRADIOSETTING_H
- #include <stdint.h>
- #include <string.h>
- #include "radio.h"
- #include "si446x_patch.h"
- typedef enum
- {
- CHIP_SI4438_C2A_433,//
- CHIP_SI4438_C2A_490,
- CHIP_SI4463_C2A_433,
- CHIP_SI4463_C2A_490,
- CHIP_SI4463_C2A_868,
- CHIP_SI4463_C2A_915,//
- CHIP_SI4438_B1B_433,//
- CHIP_SI4438_B1B_490,
- CHIP_SI4463_B1B_433,
- CHIP_SI4463_B1B_868,
- CHIP_SI4463_B1B_915,//
- CHIP_CUSTOM,
- CHIP_COUNT_MAX,
- }chipType_te;
- extern tRadioConfiguration RadioConfiguration_setting[CHIP_COUNT_MAX];
- extern tRadioConfiguration RadioConfiguration_dr_setting[CHIP_COUNT_MAX];
- #endif
|