我买了一个PlutoSDR,我正在运行Windows 10,我不知道如何将adi导入到我的Windows环境中。(Linux工作)
非必要背景。可以跳到底部:
安装了驱动程序
的Pluto
并安装了libiio库
。
我还得到了C:\> iio_info -s
的输出
C:\WINDOWS\system32>iio_info -s
Library version: 0.21 (git tag: 565bf68)
Compiled with backends: xml ip usb serial
Unable to create Local IIO context : Function not implemented
Available contexts:
0: 0456:b673 (Analog Devices Inc. PlutoSDR (ADALM-PLUTO)), serial=1044739659930006f4ff24003edc27135f [usb:3.9.5]
在这一点上,我不知道评论"Unable to create Local IIO contest: ...
“是否是一个问题,但我继续说。
然后运行命令:C:\> iio_info -u ip:192.168.2.1
Library version: 0.21 (git tag: 565bf68)
Compiled with backends: xml ip usb serial
IIO context created with network backend.
Backend version: 0.18 (git tag: v0.18 )
Backend description string: 192.168.2.1 Linux (none) 4.14.0-42540-g387d584 #301 SMP PREEMPT Wed Jul 3 15:06:53 CEST 2019 armv7l
IIO context has 9 attributes:
hw_model: Analog Devices PlutoSDR Rev.B (Z7010-AD9364)
hw_model_variant: 0
hw_serial: 1044739659930006f4ff24003edc27135f
fw_version: v0.31
ad9361-phy,xo_correction: 39999954
ad9361-phy,model: ad9364
local,kernel: 4.14.0-42540-g387d584
ip,ip-addr: 192.168.2.1
uri: ip:192.168.2.1
IIO context has 5 devices:
iio:device0: adm1177
2 channels found:
voltage0: (input)
2 channel-specific attributes found:
attr 0: raw value: 777
attr 1: scale value: 6.433105468
current0: (input)
2 channel-specific attributes found:
attr 0: raw value: 797
attr 1: scale value: 0.516601562
No trigger on this device
iio:device1: ad9361-phy
9 channels found:
altvoltage1: TX_LO (output)
8 channel-specific attributes found:
attr 0: external value: 0
attr 1: fastlock_load value: 0
attr 2: fastlock_recall ERROR: Invalid argument (-22)
attr 3: fastlock_save value: 0 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7
attr 4: fastlock_store value: 0
attr 5: frequency value: 2449999998
attr 6: frequency_available value: [46875001 1 6000000000]
attr 7: powerdown value: 0
voltage0: (input)
15 channel-specific attributes found:
attr 0: bb_dc_offset_tracking_en value: 1
attr 1: filter_fir_en value: 0
attr 2: gain_control_mode value: slow_attack
attr 3: gain_control_mode_available value: manual fast_attack slow_attack hybrid
attr 4: hardwaregain value: 71.000000 dB
attr 5: hardwaregain_available value: [-3 1 71]
attr 6: quadrature_tracking_en value: 1
attr 7: rf_bandwidth value: 18000000
attr 8: rf_bandwidth_available value: [200000 1 56000000]
attr 9: rf_dc_offset_tracking_en value: 1
attr 10: rf_port_select value: A_BALANCED
attr 11: rf_port_select_available value: A_BALANCED B_BALANCED C_BALANCED A_N A_P B_N B_P C_N C_P TX_MONITOR1 TX_MONITOR2 TX_MONITOR1_2
attr 12: rssi value: 114.25 dB
attr 13: sampling_frequency value: 30720000
attr 14: sampling_frequency_available value: [2083333 1 61440000]
voltage3: (output)
8 channel-specific attributes found:
attr 0: filter_fir_en value: 0
attr 1: raw value: 306
attr 2: rf_bandwidth value: 18000000
attr 3: rf_bandwidth_available value: [200000 1 40000000]
attr 4: rf_port_select_available value: A B
attr 5: sampling_frequency value: 30720000
attr 6: sampling_frequency_available value: [2083333 1 61440000]
attr 7: scale value: 1.000000
altvoltage0: RX_LO (output)
8 channel-specific attributes found:
attr 0: external value: 0 ............
有更多的输出,但我将在这里截断它。
此时,我假设冥王星将在我的Windows机器上工作。
基本信息:
然后,我使用IDE并通过使用File > Project > SDKs >Package导入matplotlib
和numpy
的库。
我能够找到所有的基本库,但找不到adi
。
我想我必须导入一个存储库,但不确定在哪里收集它。然而,我确实将https://github.com/analogdevicesinc/libiio.git/包括在回购列表中。我还是没办法进口艾迪。
我现在有两个问题:
我必须添加一个存储库才能将这个库导入到我的IDE? problematic??
Unable to create Local IIO context : Function not implemented...
“
任何帮助都是非常感谢的。
发布于 2020-10-10 17:40:47
在重新安装上面的驱动程序之后,我能够文件>项目结构> SDKs >包并安装pyadi-iio
。
我现在可以import adi
了
https://stackoverflow.com/questions/64295917
复制相似问题