Borrar filtros
Borrar filtros

How to ploting input signal by "Digilent Analog Discovery Pro 3450"

6 visualizaciones (últimos 30 días)
I am currently trying to use a library to interface Analog Discovery with MATLAB. However, I am encountering an issue. I am practicing the Getting Started code from the Digilent toolbox, and there are no problems when using the Analog Discovery 2 (AD2_0) for Blocking Input Stream. However, when using the "Digilent Analog Discovery Pro 3450" (ADP3450_0), the Blocking Input Stream does not work. I have attached the plotted image below.
The plotting keeps getting stuck like the image below. How can I fix this? The code is as follows:
daqreset;
devices = daqlist %list devices
devices.DeviceInfo(1)
%Single Scan
Read data from 2 analog input channels the display data
daqreset;
dq = daq("digilent");
addinput(dq,"ADP3450_0", "ai0" ,'Voltage');
addinput(dq,"ADP3450_0", "ai1" ,'Voltage');
ss = read(dq)
%Blocking Input Stream
Read data for 2 analog input channels then plot
daqreset;
dq = daq("digilent");
addinput(dq, "ADP3450_0", "ai0" ,'Voltage');
addinput(dq, "ADP3450_0", "ai1" ,'Voltage');
systemRate = 1e8; %100Mhz max frequency for AD2_0
rDiv = uint32(1) % Rate divisor is expected to be integer
rate = systemRate/rDiv;
dq.Rate = rate; % 100Mhz
data = read(dq, 100);
figure(1);
title('Blocking Input Stream');
xlabel('Samples');
ylabel('Volts');
plot([data.ADP3450_0_ai0, data.ADP3450_0_ai1]);

Respuesta aceptada

Angelo Yeo
Angelo Yeo el 15 de Mayo de 2024
Unfortunately, Analog Discovery Pro 3450 is not a supported hardware. Only Analog Discovery (LEGACY) and Analog Discovery 2 are supported. See the page below for more information.
Please go to this page to request a new hardware support.
  2 comentarios
도균
도균 el 19 de Mayo de 2024
Thank's for reply
But Digilent Toolbox say's they support Analog Discovery Pro 3450...
Here it is specified, but what does this mean??
Angelo Yeo
Angelo Yeo el 20 de Mayo de 2024
@도균: That's good to know. However, unfortunately, I'm not so sure about the third-party toolboxes. I think I only told you about MathWorks' hardware support package. Moreover, I do not have the device, so I cannot reproduce the issue for you. You can ask @Digilent.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Hardware Discovery and Setup en Help Center y File Exchange.

Productos


Versión

R2023b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by