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.

CCS/IWR1443BOOST: mmWave Demo Data Output

Part Number: IWR1443BOOST

Tool/software: Code Composer Studio

Hi,

I am trying to use the mmWave demo for fluid level sensing of two liquids in a tank. I am not using the mmWave demo visualizer for this application, and I would like to take the data that is being sent to the GUI and convert this into distance in meters of two liquids. I am only concerned with getting the actual distances, and am not worrying about other data.

I found that the data for distance is sent over UART to the GUI in this form:

 typedef volatile struct MmwDemo_detectedObj_t
{
uint16_t rangeIdx;
int16_t dopplerIdx;
uint16_t peakVal;
int16_t x;
int16_t y;
int16_t z;
Is there a simple way I can use this data to find the distance of an object in meters? I looked at the mmWave demo visualizer GUI code to try to find how it's done there, but It's hard to understand for me. I'm hoping there is a simple equation using this data to find an object distance in meters.
Thanks,
Kyle