I changed RF switch pin from DIO29 to DIO7. So apart from pin number in ti_driver_config.h file, do i need to change anything else. Like do i need to update rfDriverCallBackFunction ?
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
I changed RF switch pin from DIO29 to DIO7. So apart from pin number in ti_driver_config.h file, do i need to change anything else. Like do i need to update rfDriverCallBackFunction ?
I am having same number of pins in my custom board difference is only pin numbering. Launchpad uses 29 pin as PA but I'm using DIO7 as PA. So my question is what specific changes i need to do in rfDriverCallbackCustom function.
if you are going to control a switch in the exact same was as we do in our examples, it is enough to make changes to ti_drivers_config.h
/* SKY13317-373LF RF Antenna Switch, Parent Signal: /ti/drivers/RF RF Antenna Pin 1, (DIO29) */ #define CONFIG_RF_HIGH_PA 0x0000001d // changed to /* SKY13317-373LF RF Antenna Switch, Parent Signal: /ti/drivers/RF RF Antenna Pin 1, (DIO07) */ #define CONFIG_RF_HIGH_PA 0x00000007
and implement the callback in the same way as the rfDriverCallbackAntennaSwitching
Siri