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.

IWR6843: How do I see LUT of Tx and Rx

Part Number: IWR6843

My device is IWR6843.
My software is "\mmwave_industrial_toolbox_4_7_0__win\mmwave_industrial_toolbox_4_7_0\labs\gesture_recognition\68xx_multi_gesture_and_motion_det\src\ods".


I want to see LUT of Tx and Rx.

Is this correct how to see LUT?

rlRxGainTempLutData_t rxGainTempLutData;
rlRxGainTempLutReadReq_t rxGainTempLutReadCfg;
rxGainTempLutReadCfg.profileIndx = 0;
rxGainTempLutReadCfg.reserved0 = 0;
rxGainTempLutReadCfg.reserved1 = 0;
retVal = rlRxGainTempLutGet(RL_DEVICE_MAP_INTERNAL_BSS, (rlRxGainTempLutReadReq_t*)&rxGainTempLutReadCfg,&rxGainTempLutData);

rlTxGainTempLutData_t txGainTempLutData;
rlTxGainTempLutReadReq_t txGainTempLutReadCfg;
txGainTempLutReadCfg.profileIndx = 0;
txGainTempLutReadCfg.reserved0 = 0;
txGainTempLutReadCfg.reserved1 = 0;
retVal = rlTxGainTempLutGet(RL_DEVICE_MAP_INTERNAL_BSS, (rlTxGainTempLutReadReq_t*)&txGainTempLutReadCfg,&txGainTempLutData);

rxGainTempLutData[0-18] ... 19data ( [degreeC] -30, -20, -10, 0, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100, 110, 120, 130, 140, 140over)
txGainTempLutData[Tx index][0-18]...3*19data ( Tx0, 1, 2 ) * ( [degreeC] -30, -20, -10, 0, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100, 110, 120, 130, 140, 140over)



and if this is correct, for example, how many dB is txGainTempLutData[1][11] = 8 ?


Best Regards,
Morimoto