I used the following matlab code to setup "Manually Host-Radio Hardware Setup".
The code is as follows:
dev = sdrdev('AD936x');
downloadImage(dev,'BoardName','ZC706 and FMCOMMS2/3/4','SDCardLocation','/media/jarul/BOOT');
After several attempt, one of my SD-card is inserted into AD9361. Turned on the Radio and able to ping from my host
as follows: ping 192.168.3.2 -c 3
I got a ping response, properly.
But now I do the testConnection as follows:
dev = sdrdev('AD936x');
testConnection(dev,'192.168.3.2')
## Pinging host IP address
Error using comm.zynqradioshared.dev.Base/pingHost
Host and device IP address can not be the same
Error in comm.zynqradioshared.dev.Base/testConnection
Error in comm.zynqradio.dev.Base/testConnection (line 64)
status = testConnection@comm.zynqradioshared.dev.Base(obj,varargin{:});
Can someone help me, why do I get the following response or error message?
Thanks