以下IQ数据的结构体,并没有对应的addr信息,请问哪条指令可以读取出connHandle和addr的对应。
/// @brief AoA Raw Result
typedef struct __attribute__((packed))
{
uint16_t connHandle; //!< Connection handle
int8_t rssi; //!< Rssi for this antenna
uint8_t antenna; //!< Antenna array used for this result
uint8_t channel; //!< BLE data channel for this measurement
uint16_t offset; //!< Offset in RAW result (size of samples[])
uint16_t samplesLength; //!< Expected length of entire RAW sample
AoA_IQSample_Ext_t samples[]; //!< The data itself
} rtlsAoaResultRaw_t;
或者蓝牙代码中查询当前连接的蓝牙的地址的API是哪个?