comm.SDRRxE3xx
Receive data from USRP E3xx radio hardware
Add-On Required: This feature requires the Communications Toolbox Support Package for USRP Embedded Series Radio add-on.
Description
The comm.SDRRxE3xx
System object™ receives data from a USRP™ E3xx radio hardware.
The object supports these radio hardware devices:
USRP E310
USRP E312
You can use the comm.SDRRxE3xx
System object to simulate and develop various software-defined radio (SDR) applications. This
diagram shows the conceptual overview of transmitting and receiving radio signals in
MATLAB® using the Communications Toolbox™ Support Package for USRP Embedded Series Radio. MATLAB interacts with the comm.SDRRxE3xx
receiver System object to receive data from the radio hardware.
To receive data from the E3xx radio hardware:
Create the
comm.SDRRxE3xx
object and set its properties.Call the object as if it were a function.
To learn more about how System objects work, see What Are System Objects?.
Creation
To create a comm.SDRRxE3xx
System object, use the sdrrx
function with input
argument 'E3xx'
. For example:
rx = sdrrx('E3xx')
To create the object with properties set to specific values, call the function using one or more name-value arguments. For example:
rx = sdrrx('E3xx', ... 'IPAddress','192.168.3.2', ... 'CenterFrequency',2.2e9, ... 'BasebandSampleRate',800e3)
Properties
Usage
Description
[
returns data received from the radio hardware associated with the
data
,validData
,overflow
]
= rx()comm.SDRRxE3xx
receiver System object
rx
. The output validData
indicates whether the
object has received data from the radio hardware. The output overflow
indicates data discontinuity. If overflow
is true
,
then data
does not represent contiguous data. The first valid data
frame can contain transient values, resulting in packets containing undefined data.
Output Arguments
Object Functions
To use an object function, specify the
System object as the first input argument. For
example, to release system resources of a System object named obj
, use
this syntax:
release(obj)
Examples
Version History
Introduced in R2019b