antsdr-fw
antsdr-fw copied to clipboard
How to use ANTSDR E310 with MATLAB 2022a
I have a MicroPhase ANTSDR E310 with latest firmware (e310_v1.2-dirty) .
When I tried to use ANTSDR E310 with MATLAB 2022a, I get the following error
dev = sdrdev('AD936x');
dev.IPAddress = '192.168.1.10' dev = SDRDevAD936x with properties:
IPAddress: '192.168.1.10'
DeviceName: 'AD936x'
testConnection(dev, '192.168.1.1');
Pinging host IP address
Pinging radio IP address
Checking compatibility of software with hardware
Error using comm.zynqradioshared.dev.Base/testConnection Error attempting to connect to address '192.168.1.10'.
Error connecting to SSH server at 192.168.1.10 This could be due to:
- an improperly specified device IP address
- an unsuccessful boot from SD card image
- an improperly configured network card on the host
- an incompatible network card on the host
- host port blocking or anti-virus software
See the documentation to configure the host and SDR device for proper communication.
Error in comm.zynqradio.dev.Base/testConnection (line 64) status = [email protected](obj,varargin{:});
How can I overcome this connection problem? Thanks
Hi, you can download the v0.34 firmware from this release.
You can install the plutosdr hardware support package, and then you can connect to the device by.
rx1 = sdrrx('Pluto','RadioID', 'ip:192.168.1.10');
tx1 = sdrtx('Pluto','RadioID', 'ip:192.168.1.10');
Additionally, you can use ADI Transceiver Toolbox to connect the device.