The USRP™ Hardware Driver Repository
Find a file
Abhishek Verma b2f7a87b0f host: utils: Fixed python script paths under utils for windows
When uhd_usrp_probe is executed with incompatible UHD and FPGA images,
we get the expected incompat error. The problem is that on windows,
this error messages prints an incorrect file path to uhd_images_downloader.py.
It mentions folder "bin" but the python script is located under "lib".

For example:
current behavior "C:\Program Files\UHD\bin\uhd\utils\uhd_images_downloader.py"
expected behavior "C:\Program Files\UHD\lib\uhd\utils\uhd_images_downloader.py"

This fix is addressed by updating find_utility() function. Since, the dll in
windows is present under /bin, the get_lib_path() returns this path and
not the /lib path. To get the correct path, get_lib_path() is replaced by
get_pkg_path() and the rest of the file path is contructed using /lib/.
2025-02-07 14:49:34 +01:00
.ci ci: fix X310 bitfile loading in streaming tests 2025-02-07 11:00:36 +01:00
.github github: Clarify purpose of issue tracker 2024-11-06 10:55:10 +01:00
firmware Fix binary file reading in bin_to_coe.py 2024-07-05 13:50:54 +02:00
fpga fpga: Remove vivado_lab support 2025-02-06 16:45:15 +01:00
host host: utils: Fixed python script paths under utils for windows 2025-02-07 14:49:34 +01:00
images doc: Update manifest to refer to 4.8.0.0 release filesystem 2025-01-23 20:42:29 +01:00
mpm mpm: apply linting on lmk04832.py 2025-02-05 16:56:54 -06:00
tools ci: Skip most tests on image builder changes 2025-02-07 11:00:36 +01:00
.clang-format Update clang-format for version 14 2023-08-07 15:35:56 -05:00
.clang-format-ignore tools: Add clang-formatting tools 2023-08-07 15:35:56 -05:00
.clang-tidy Add clang-tidy file 2021-03-04 08:07:26 -06:00
.gitattributes uhd: Add support for the USRP X410 2021-06-10 12:01:53 -05:00
.gitignore uhd: gitignore .DS_Store for our macOS friends 2021-03-12 13:55:25 -06:00
.gitmodules Merge FPGA repository back into UHD repository 2020-01-28 09:35:36 -08:00
.pre-commit-config.yaml uhd: Add .pre-commit-config.yaml 2024-04-08 21:44:38 -05:00
.readthedocs.yaml docs: fixing the readthedocs builds 2023-11-10 16:01:01 -06:00
CHANGELOG lib: Replace uhd::math::gcd,lcm with std::gcd,lcm 2025-02-07 11:00:36 +01:00
CODING.md coding guidelines: use reference-style link brackets for ni-python 2024-07-02 11:45:19 +02:00
CONTRIBUTING.md doc: Add information about NI SRM 2024-01-09 08:52:16 -06:00
LICENSE.md Merge FPGA repository back into UHD repository 2020-01-28 09:35:36 -08:00
README.md readme: fix srsRAN URL 2024-04-05 11:22:59 +02:00

USRP Hardware Driver (UHD™) Software

Welcome to the UHD™ software distribution! UHD is the free & open-source software driver and API for the Universal Software Radio Peripheral (USRP™) SDR platform, created and sold by Ettus Research.

UHD supports all Ettus Research USRP™ hardware, including all motherboards and daughterboards, and the combinations thereof.

Documentation

For technical documentation related to USRP™ hardware or UHD system design, check out the UHD and USRP Manual. That is where you can find Installation Instructions, help on how to build UHD from source on different platforms, development guidelines and reference documentation as well as device usage guidance.

Additionally, be sure to check out the Ettus Research FAQ, and the Knowledge Base for useful application notes and tutorials.

OS Support

UHD is primarily developed on Linux, but we also test and support the following operating systems.

  • Linux (Fedora and Ubuntu)
  • Mac OS X (Intel)
  • Windows 10

Other operating systems will most likely work, too, but are not officially supported.

Applications

UHD can be used to build stand-alone applications with USRP™ hardware, or with third-party applications. Some common toolkits / frameworks are:

Directories

host/

The source code for the user-space driver.

mpm/

The source code for the module peripheral manager (MPM). This is code that is run on embedded devices.

firmware/

The source code for all microprocessors in USRP hardware.

fpga/

The source code for the UHD FPGA images.

images/

This contains the package builder for FPGA and firmware images. We provide other tools to download image packages, the scripts in here are mainly relevant for UHD maintainers and -developers.

tools/

Additional tools, mainly for debugging purposes. See the readme-file in that directory for more details on the individual tools.