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.

MMWAVE-STUDIO: Any option not to save raw data from DCA1000 ?

Part Number: MMWAVE-STUDIO

Hello,

mmWaveStudio LUA scripts can invoke external matlab code. The external matlab code can invoke ar1command like this :

    Lua_String = 'ar1.StartFrame()';
    ErrStatus = RtttNetClientAPI.RtttNetClient.SendCommand(Lua_String);
    if (ErrStatus ~= 30000)
        disp('Radarstudio Connection Failed');
    end
 

This command would start capturing and saving incoming raw data into adc_data.bin, but do you have any options to do start streaming without saving the file ? I would like to handle udp packets directly in matlab code.

Best Regards,
NK