Other Parts Discussed in Thread: AM2732
Tool/software:
Hi,
My hardware platform is AM2732 + AWR2243 * 2.
I'm trying to monitor the Tx transmit power, and my configuration parameters are as follows:
My configured parameters are:
rlTxPowMonConf_t tx0PowrMonCfg = { 0, 7, 0, 0, 0, 30, 30, 0, 0 }; | |
rlAllTxPowMonConf_t txPowMonConfig = { &tx0PowrMonCfg, &tx0PowrMonCfg, &tx0PowrMonCfg }; | |
ret = rlRfTxPowrMonConfig(RL_DEVICE_MAP_INTERNAL_BSS, &txPowMonConfig); |
After this, I executed the mmwDemo_cfgAnalogMonitor
interface and configured the parameters as:
analogMonCfg.enMask |= 0x1 << MMWDEMO_ANALOG_MONITOR_TX0_POWER; | |
analogMonCfg.enMask |= 0x1 << MMWDEMO_ANALOG_MONITOR_TX1_POWER; | |
analogMonCfg.enMask |= 0x1 << MMWDEMO_ANALOG_MONITOR_TX2_POWER; |
According to the rlRfTxPowrMonConfig
interface documentation, after configuring this interface, asynchronous events RL_RF_AE_MON_TX0_POWER_REPORT
, RL_RF_AE_MON_TX1_POWER_REPORT
, RL_RF_AE_MON_TX2_POWER_REPORT
should be reported.
However, when I monitor events in the MmwDemo_eventCallbackFxn
interface, there are no asynchronous event reports being output.
May I ask: Is there an issue with my process? Or are the parameters incorrect? What should I do to be able to monitor the Tx power?
Best Regards!
Thank you!