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.

CC2652R: AoA RTLS IQ samples number

Part Number: CC2652R

I'm also trying to use 4 antennas, but my sample length in each pkt is 82! (with a sample rate of 1us and slot duration of 1) 
Is it because of the switching time in my antenna array? [I'm having 2 arrays of 4elements, controlling the two arrays with GPOI(26), and only testing the first array]

#define ANTENNA_TABLE_SIZE 8
// BitMask of all the relevant GPIOs which needed for the antennas
#define ANTENNA_IO_MASK BV(26)|BV(27)|BV(28)|BV(29)|BV(30)

// Antenna GPIO configuration per id (relevant for BOOSTXL-AOA)
antennaIOEntry_t antennaTbl[ANTENNA_TABLE_SIZE] = {
BV(26)|BV(27) // id 0, A1.2
BV(26)|BV(28), // id 1, A1.1
BV(26)|BV(29), // id 2, A1.3
BV(26)|BV(30), // id 3, A1.4
BV(27), // id 4, A2.1
BV(28), // id 5, A2.2
BV(29), // id 6, A2.3
BV(30)}; // id 7 A2.4