Hi,
I am currently working on QM33120 board and i tried most of the examples in the SEGGER platform.
In QM33120 board there are two antennas. is there any API to configure one antenna as TX and other antenna as RX?
I came upon with an API about setting antenna
/*! ------------------------------------------------------------------------------------------------------------------
* @brief This function is used for specific customer hardware/modules where antenna selection switch is connected
* to GPIO6 and GPIO7. This function configures the GPIOs to give particular antenna selecton.
*
* @param[in] antenna_config: Configures GPIO6 and/or GPIO7 to give specific antenna selection
* bitfield configuration:
* Bit 0: Set GPIO6 as output
* Bit 1: Value to apply for GPIO6 (0/1)
* Bit 2: Set GPIO7 as output
* Bit 3: Value to apply for GPIO7 (0/1)
*/
void dwt_configure_and_set_antenna_selection_gpio(uint8_t antenna_config);
Is it possible to do that in this board?