Course Introduction

Wireless Digital Communications

The objective of a digital communications system is to share information (in the form of a digital signal) between multiple points.

A traditional digital communication system can be represented with a signal flow diagram, which is a series of "blocks" that are connected together, each of which perform various data and signal processing operations. Some excerpts of a communication system from a course lab in LabVIEW are given:

TX-RX Chain

The system consists of a:

  1. Transmitter - transforms information (bits) to a continuous signal that may be sent over the wireless channel
  2. Receiver - senses and locks on to the transmitted signal, then transforming it back to bits.

The system is complicated by the Wireless Channel, which distorts the transmitted continuous signal.

The information (bits) are generated by the first block ("source"), while the last block ("error detect") compares the received bits to the original in order to determine the error rate.

There are fundamental processes that occur in a digital wireless communication system, that are illustrated by the blocks of the diagram, and will be taught in the course:

There are also additional necessary steps that are covered, but are performed by the USRP:

Some of these blocks will be re-constructed by the student in the course lab.

For further introductory material, see NI's Understanding the Fundamentals of Digital Communications.

Designing with LabVIEW and the USRP software-defined radio

LabVIEW and the USRP are key to the hands-on learning method used in the course.


In LabVIEW, functions are called VIs, or Virtual Instruments, since they mimic real-life instruments. They have inputs, outputs, and perform some function, much like a function in any programming language.

Each of the blocks shown inside of the Transmitter and Receiver in the course lab diagram are VIs that are used to construct the example communications system.

VI

VIs are connected together using wires. The style and color of the wire represent the data type of what is connected to the wire.

For example. the "MOD" VI has a thick blue wire as an input, representing an integer array (the bits to be modulated), as well as a thick orange wire as an output, representing an array of symbols (complex numbers representing waveform changes, ie. phase).


VI Palette

VIs are constructed using existing (typically, simpler) VIs, many which can perform the same operations that are seen in traditional programming, such as mathematical operations (e.g. add, multiply), conditional operations (e.g. if, else) and loops (e.g. while, for).

There are a large number of interface, communications and signal processing VIs that are readily available for use. These make interfacing with the USRP (which accepts samples of the baseband signal), as well as many of the needed modulation and filtering operations, as simple as inserting a VI and connecting appropriate the wires.

(For more information about LabVIEW and the USRP, please visit the Equipment page)