UHD.jl
Purpose
This simple package proposes some bindings to the UHD, the C driver of the Universal Software Radio Peripheral USRP
The purpose is to able to see the radio peripheral inside a Julia session and to be able to send and receive complex samples direclty within a Julia session.
Installation
The package can be installed with the Julia package manager. From the Julia REPL, type ]
to enter the Pkg REPL mode and run:
pkg> add UHD
Or, equivalently, via the Pkg
API:
julia> import Pkg; Pkg.add("UHD")
Documentation
- The base documentation with the different functions can be found in the base section
- Different examples are described in in the example section. Other examples are provided in the example subfolder of the project.