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.

TIDEP-01017: One question on aoa_overlapAntennaPairs in processor sdk radar 3.8.0.0

Part Number: TIDEP-01017

Hi,

 

In chains_cascadeRadarOd.c, you will find below code.

 

typedef struct

{

    UInt16 sensorInd;

    UInt16 txAntInd;

    UInt16 rxAntInd;

    UInt16 pad;

} aoa_overlap_antenna;

 

typedef struct

{

    aoa_overlap_antenna previous;

    aoa_overlap_antenna current;

} aoa_overlapAntennaPairs;

 

...

 

aoa_overlapAntennaPairs gAoa_overlapAntennaPairs[] =

{

     {.previous = {1,0,0}, .current = {0,1,3}},

     {.previous = {1,1,0}, .current = {0,2,3}},

     {.previous = {1,2,0}, .current = {0,3,3}},

     {.previous = {1,3,0}, .current = {0,4,3}}

};

 

How to understand the value in yellow?