comm.SDRTxE3xx
Send data to 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.SDRTxE3xx
System object™ sends data to a USRP™ E3xx radio hardware.
The object supports these radio hardware devices:
USRP E310
USRP E312
You can use the comm.SDRTxE3xx
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.SDRTxE3xx
transmitter System object to send data to the radio hardware.
To send data to the E3xx radio hardware:
Create the
comm.SDRTxE3xx
object and set its properties.Call the object with arguments, as if it were a function.
To learn more about how System objects work, see What Are System Objects?
Creation
To create a default comm.SDRTxE3xx
System object, use the sdrtx
function with input
argument 'E3xx'
. For
example:
tx = sdrtx('E3xx')
To create the object with properties set to specific values, call the function using one or more name-value arguments. For example:
tx = sdrtx('E3xx', ... 'IPAddress','192.168.3.2', ... 'CenterFrequency',2.2e9, ... 'BasebandSampleRate',800e3);
Properties
Usage
Description
tx(
sends data to the radio hardware
associated with the data
)comm.SDRTxE3xx
transmitter System object, tx
.
tx()
enables DDS transmission. To use this syntax, set the
DataSourceSelect
property to
'DDS'
.
returns a logical value that indicates data discontinuity. If
underflow
= tx(data
)underflow
is true
, the input
data
does not represent contiguous data from the host to the
antenna. Use this information to determine whether the host sends valid data to the radio
hardware.
Note
Calling the object for the first time initializes the radio. Because this
initialization can result in an underflow, ignore the underflow
output value of the first call.
Input Arguments
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