嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
libiio:交叉编译libiio代码
.
├── libiio-master
│ ├── CI
│ │ ├── azure
│ │ │ ├── ci-ubuntu.sh
│ │ │ ├── generateDocumentationAndDeploy.sh.in
│ │ │ ├── prepare_assets.sh
│ │ │ └── zip.txt
│ │ ├── build_win.ps1
│ │ ├── generate_exe.ps1
│ │ ├── publish_deps.ps1
│ │ └── travis
│ │ ├── inside_docker.sh
│ │ └── lib.sh
│ ├── CMakeLists.txt
│ ├── CODE_OF_CONDUCT.md
│ ├── CONTRIBUTING.md
│ ├── COPYING.txt
│ ├── COPYING_GPL.txt
│ ├── Contributors.md
│ ├── Distribution.xml.cmakein
│ ├── Doxyfile.in
│ ├── README.md
│ ├── README_BUILD.md
│ ├── artifact_manifest.txt.cmakein
│ ├── azure-pipelines.yml
│ ├── backend.c
│ ├── bindings
│ │ ├── CMakeLists.txt
│ │ ├── csharp
│ │ │ ├── AssemblyInfo.cs.in
│ │ │ ├── Attr.cs
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Channel.cs
│ │ │ ├── Context.cs
│ │ │ ├── Device.cs
│ │ │ ├── Doxyfile.in
│ │ │ ├── IOBuffer.cs
│ │ │ ├── IioLib.cs
│ │ │ ├── ScanContext.cs
│ │ │ ├── Trigger.cs
│ │ │ ├── examples
│ │ │ │ └── ExampleProgram.cs
│ │ │ ├── key.snk
│ │ │ ├── libiio-sharp.dll.config.cmakein
│ │ │ ├── libiio-sharp.pc.cmakein
│ │ │ └── mainpage.dox
│ │ └── python
│ │ ├── CMakeLists.txt
│ │ ├── README.md
│ │ ├── doc
│ │ │ ├── buffer.rst
│ │ │ ├── channel.rst
│ │ │ ├── conf.py.in
│ │ │ ├── context.rst
│ │ │ ├── device.rst
│ │ │ ├── examples.rst
│ │ │ ├── iio_attr.rst
│ │ │ ├── iio_info.rst
│ │ │ ├── iio_readdev.rst
│ │ │ ├── iio_writedev.rst
│ │ │ ├── index.rst
│ │ │ └── trigger.rst
│ │ ├── examples
│ │ │ ├── iio_attr.py
│ │ │ ├── iio_info.py
│ │ │ ├── iio_readdev.py
│ │ │ └── iio_writedev.py
│ │ ├── iio.py
│ │ └── setup.py.cmakein
│ ├── buffer.c
│ ├── channel.c
│ ├── cmake
│ │ ├── CheckCaseSensitiveFileSystem.cmake
│ │ ├── DarwinPackaging.cmake
│ │ └── LinuxPackaging.cmake
│ ├── context.c
│ ├── debug.h
│ ├── deps
│ │ └── wingetopt
│ ├── device.c
│ ├── dns_sd.c
│ ├── dns_sd.h
│ ├── dns_sd_avahi.c
│ ├── dns_sd_bonjour.c
│ ├── dns_sd_windows.c
│ ├── doc
│ │ ├── codemodel.svg
│ │ ├── html
│ │ │ └── img
│ │ │ ├── ADI_Logo_AWP.png
│ │ │ ├── Chromium-OS-Logo.png
│ │ │ ├── GNURadio_logo.png
│ │ │ ├── PyADI-IIO_Logo_72.png
│ │ │ ├── ez.png
│ │ │ ├── favicon.ico
│ │ │ ├── fb.png
│ │ │ ├── gp.png
│ │ │ ├── ig.png
│ │ │ ├── iio_logo.png
│ │ │ ├── legato_logo.png
│ │ │ ├── li.png
│ │ │ ├── mangOH_logo.png
│ │ │ ├── mathworks_logo.png
│ │ │ ├── osc128.png
│ │ │ ├── scopy.png
│ │ │ ├── sdrangel.png
│ │ │ ├── ss.png
│ │ │ ├── style.css
│ │ │ ├── sw.png
│ │ │ ├── tw.png
│ │ │ ├── yk.png
│ │ │ └── yt.png
│ │ ├── index.html.in
│ │ └── template
│ │ └── footer.html
│ ├── examples
│ │ ├── CMakeLists.txt
│ │ ├── README.md
│ │ ├── ad9361-iiostream.c
│ │ ├── ad9371-iiostream.c
│ │ ├── adrv9002-iiostream.c
│ │ ├── adrv9009-iiostream.c
│ │ ├── dummy-iiostream.c
│ │ └── iio-monitor.c
│ ├── iio-backend.h
│ ├── iio-config.h.cmakein
│ ├── iio-lock.h
│ ├── iio-private.h
│ ├── iio.h
│ ├── iiod
│ │ ├── CMakeLists.txt
│ │ ├── dns-sd.c
│ │ ├── dns-sd.h
│ │ ├── iiod.c
│ │ ├── init
│ │ │ ├── iiod.conf.cmakein
│ │ │ ├── iiod.init.cmakein
│ │ │ └── iiod.service.cmakein
│ │ ├── lexer.l
│ │ ├── ops.c
│ │ ├── ops.h
│ │ ├── parser.y
│ │ ├── queue.h
│ │ ├── serial.c
│ │ ├── thread-pool.c
│ │ ├── thread-pool.h
│ │ └── usbd.c
│ ├── iiod-client.c
│ ├── iiod-client.h
│ ├── libiio.iss.cmakein
│ ├── libiio.pc.cmakein
│ ├── libiio.rules.cmakein
│ ├── libini
│ │ ├── LICENSE.txt
│ │ ├── README
│ │ ├── ini.h
│ │ └── libini.c
│ ├── local.c
│ ├── lock.c
│ ├── mainpage.dox
│ ├── man
│ │ ├── CMakeLists.txt
│ │ ├── README.md
│ │ ├── iio_attr.1.in
│ │ ├── iio_info.1.in
│ │ ├── iio_readdev.1.in
│ │ ├── iio_reg.1.in
│ │ ├── iio_writedev.1.in
│ │ └── make_man.sh.in
│ ├── mdns.h
│ ├── network-unix.c
│ ├── network-windows.c
│ ├── network.c
│ ├── network.h
│ ├── properties.rc.cmakein
│ ├── scan.c
│ ├── serial.c
│ ├── sort.c
│ ├── sort.h
│ ├── tests
│ │ ├── CMakeLists.txt
│ │ ├── gen_code.c
│ │ ├── gen_code.h
│ │ ├── iio_adi_xflow_check.c
│ │ ├── iio_attr.c
│ │ ├── iio_common.c
│ │ ├── iio_common.h
│ │ ├── iio_genxml.c
│ │ ├── iio_info.c
│ │ ├── iio_readdev.c
│ │ ├── iio_reg.c
│ │ ├── iio_stresstest.c
│ │ └── iio_writedev.c
│ ├── usb.c
│ ├── utilities.c
│ ├── xml
│ │ ├── ad5541a.xml
│ │ ├── ad5628-1.xml
│ │ ├── ad7091r.xml
│ │ └── adis16488.xml
│ └── xml.c
└── 好例子网_libiio-master_2022.zip
24 directories, 178 files