Hello.
I am trying to make my own python program for realtime data analyzer for mmWave Radar.
To capture ADC results in realtime, it seems that the command of ar1.CaptureCardConfig_StartRecord(adc_data_path, 1) is necessary to start UDP data transfer to PC.
However, the command also save the binary data files in PC too and the file size is huge.
I just want to start the ADC data transfer through the UDP protocol without saving the binary file in the hard disk.
1) Is there any other command to start ADC data transfer though the UDP?
2) Is there any other way to configure DCA1000EVM and Radar module or run the lua script without mmWave Studio?
Thank you.
--Start Record ADC data
print("******* starting to record ADC data *******")
adc_data_path = "C:\\ti\\mmwave_studio_02_01_00_00\\mmWaveStudio\\PostProc\\test_data.bin"
ar1.CaptureCardConfig_StartRecord(adc_data_path, 1)
RSTD.Sleep(1000)
--Trigger frame
ar1.StartFrame()
RSTD.Sleep(5000)