Sign in

Libre University uses your GitHub account. Signing in is only needed to sit a final test, so the score is kept on your profile.

The radio link that carries your commands

A quadcopter with a perfect control loop still does nothing useful until a pilot can tell it what to do, and that instruction arrives over a radio link. A transmitter in the pilot's hands reads the sticks and switches and broadcasts them; a receiver on the craft catches the broadcast and hands the numbers to the flight controller, which feeds them in as the setpoints of the previous lesson. The link is short, a few hundred metres to a few kilometres, and one-way for control, though most modern links also send data back. Its engineering is about three things that a builder learns to weigh: how little delay it adds, how far it reaches, and how it behaves when it fails, which is the one that decides whether a lost link means a controlled landing or a runaway.

The pilot commands the four things of the mixer lesson, throttle, pitch, roll and yaw, and each is a channel, a number that varies as the stick moves. Beyond the four sticks are switches, more channels, and these do the discrete jobs: selecting flight mode, such as switching between the self-levelling and acro loops of the control lesson, and above all arming, the deliberate switch that allows the motors to spin at all. Arming exists because spinning propellers are dangerous and a craft must never start them by accident, so the motors stay dead until an arm switch is thrown and the throttle is low, and they stop the moment it is thrown back. A typical link carries eight to sixteen channels, four sticks and the rest switches, updated together many times a second.

How the receiver talks to the flight controller

Early receivers gave each channel its own wire with a servo-style pulse, which was bulky and slow. Modern ones send all the channels down a single wire as a digital serial stream, and the protocol names, SBUS, and the newer CRSF used by the popular ELRS system, are worth recognising because a build must set the flight controller to expect the one its receiver speaks. The move to digital serial did the same thing here that DShot did for the motors: it replaced a fragile analog pulse with a clean numeric stream, packing more channels down fewer wires with less delay and better noise immunity. The gain that made CRSF and ELRS take over is chiefly latency, the time from moving the stick to the motors responding, cut low enough that a racing pilot feels the craft answer instantly. Latency, not range, is what a modern control link competes on, because a delay of even a few tens of milliseconds is the difference between a craft that feels connected and one that feels like it is swimming.

Frequency, range and the trade it forces

Control links run on one of two radio bands, and the choice is a real trade. The 2.4 GHz band carries data fast and its antennas are tiny, which suits low latency and high channel counts, but higher frequencies are absorbed and blocked more easily, so 2.4 GHz reaches less far and is stopped more readily by obstacles and the craft's own carbon frame. The 900 MHz band travels much further and bends around obstacles better, at the cost of larger antennas and, historically, less data. A long-range craft leans toward 900 MHz; a close-in racer toward 2.4 GHz. Behind the choice is the physics of a link budget: the transmitter puts out a fixed power, the signal spreads and weakens with distance, the craft's antenna captures a shrinking fraction of it, and the link holds only while the captured signal stays above the noise. Raising transmit power, using better antennas, and lowering the data rate all widen the margin, which is why long-range systems can dial their rate down to reach further when the link gets weak, trading responsiveness for reach exactly when reach is what is needed.

Example. A pilot flies a 2.4 GHz link and notices control gets ragged behind a building but is solid in the open at twice the distance. What does that reveal about the limit?

The limit is not raw distance but the link budget, and the building absorbs 2.4 GHz strongly, dropping the captured signal below the noise even though the open-air range is far greater. The fix is line of sight, more antenna, or a lower frequency, not simply more power, because the obstacle, not the distance, broke the budget.

Now you. Two otherwise identical links run at 2.4 GHz and 900 MHz. Which would you expect to reach further through trees, and why?

Answer

The 900 MHz link. Lower frequencies are absorbed less and diffract around obstacles more readily, so the same power holds a usable signal further through foliage.

Failsafe, the most important setting on the craft

Every radio link eventually drops, from range, interference, or a flat transmitter battery, and what the craft does in that instant is a safety decision that must be made before the first flight, not discovered during it. This is the failsafe. The dangerous default is for the craft to hold its last command, which on a craft climbing away means it keeps climbing away, out of range and out of control, a genuine hazard to people below. The correct failsafe for most craft is to cut the throttle and disarm, dropping the craft on the spot, which is safest near people, or on a larger craft to switch to an automatic return that climbs to a safe height and flies home on satellite navigation. Setting and then testing the failsafe, by switching the transmitter off with the craft restrained and confirming the motors stop, is one of the non-negotiable steps of a build, and skipping it is how a lost link becomes a lost craft or an injury.

Most modern links also carry data back from the craft to the pilot, the telemetry: battery voltage, signal strength, and the craft's estimate of its own position and state. The most useful of these in the air is a warning that the signal is fading before it fails, so the pilot can turn back while still in control, and a battery voltage low enough to demand a landing before the sag of the power lesson pulls a cell below its safe floor. Telemetry turns the link from a one-way command into a conversation, and it is what lets a pilot fly to the real edge of the link's reach on purpose rather than by accident. With the command link understood, only one channel remains to build, the one that carries the pilot's view down from the craft, which is the FPV video of the next lesson.