Hi,
I am using PlutoSDR from my linux machine.
I followed the link https://wiki.analog.com/university/tools/pluto/drivers/linux and installed all the drivers and dependencies required to run the device.
But the output of the command : iio_info -n 192.168.2.1 | grep device
Gives this output
IIO context has 5 devices: iio:device3: cf-ad9361-dds-core-lpc (buffer capable) iio:device1: ad9361-phy 18 device-specific attributes found: attr 0: dcxo_tune_coarse ERROR: No such device (-19) attr 6: dcxo_tune_fine ERROR: No such device (-19) iio:device4: cf-ad9361-lpc (buffer capable) attr 3: samples_pps ERROR: No such device (-19) attr 3: samples_pps ERROR: No such device (-19) iio:device2: xadc 1 device-specific attributes found: iio:device0: adm1177
What could be the possible issue ?
Thanks
-Regards
Sushant
No, those errors are fine. Pluto does not use a DCXO unlike some of the other boards (RF-SOM) but instead has a single XO correction parameter.
-Travis
I run my pluto with lubuntu 18.04
With iio_info -n 192.168.2.1
I can find the devices but with
iio_attr -a -d ad9361-phy filter_fir_config
No IIO context found
Have you configured the network adaptor populated by Pluto? It will appear under ifconfig -a and should be configured with the same subnet but different IP as Pluto.
Changed the subnet in the config.txt but did not help
What happens if you advice iio_info to scan?
michael@hal9000:~$ iio_info -sLibrary version: 0.15 (git tag: 6ecff5d)Compiled with backends: local xml ip usbAvailable contexts: 0: 0456:b673 (Analog Devices Inc. PlutoSDR (ADALM-PLUTO)), serial=104473222a87000c1b000c009b8ed5c48e [usb:1.42.5]
You can instruct the iio tools to use the URI (-u) option.
michael@hal9000:~$ iio_attr -u usb:1.42.5 -d ad9361-phy filter_fir_configdev 'ad9361-phy', attr 'filter_fir_config', value :'FIR Rx: 0,0 Tx: 0,0'
michael@hal9000:~$ iio_attr -u ip:192.168.2.1 -d ad9361-phy filter_fir_configdev 'ad9361-phy', attr 'filter_fir_config', value :'FIR Rx: 0,0 Tx: 0,0'michael@hal9000:~$
-Michael