Main Content

release

Stop streaming raw ADC radar data and release the dca1000 object

Since R2024b

Description

release(iqDataSource) stops streaming raw ADC data from the DCA1000EVM connected to TI mmWave radar board, clears the buffer, and allows changes to non-tunable properties.

Examples

Stop streaming raw ADC data

% Create dca1000 object  

iqDataSource = dca1000("IWR6843ISK"); 

% Start reading data from the Radar 

iqData = iqDataSource(); 

% Stop radar streaming and release system object  

release(iqDataSource); 

% Update non tunable Property ‘UDPPacketDelay’ 

iqDataSource.UDPPacketDelay = 50; 

% Start reading data from the Radar  

iqData = iqDataSource(); 

Input Arguments

collapse all

The dca1000 object with the default or specified properties.

Version History

Introduced in R2024b

See Also