Airband radio receiver


All civil air traffic control (ATC) voice radio is broadcasted totally open and unencrypted in the "aviation band", which comprise a number of reserved channels between 118 and 134 MHz. Provided that you have a suitable receiver or scanner equipment, it is not difficult to locate a channel and start listening -- even though it may not be obvious to the layman exactly what all the slurred cryptic messages mean! 

The components that make up this project, both hardware and software-wise, consists mostly of off-the-shelf (or rather off-the-web) readymade stuff. Practically the only handcrafted  parts are the antennas (antennae, aerials), their cabling and some proto-board soldering.

For a write-up of my "companion" ADS-B receiver see here.  A description of the aviation band receiver part follows on this page.



Antenna 

The type of outdoors antenna that is easiest to construct is perhaps the dipole, and that is what we settled for. For a nominal target frequency of 127 MHz (which is the rational medium of the interesting frequency span of 118 to 137) the quarter-wavelength dimension is 590 mm. I used 15 mm (chromed) copper tubing. The two arms (each 560 mm long) are joined by a plastic dowel as close as possible (with plastic washer for separation) and the connections of the coaxial leads protected by a simple watertight junction box.

Type RG59 coaxial was used for both antennas. This type has nominally 75 Ohm impedance, while the aviation band receiver expects 50 0hm. To somewhat compensate for line loss due to this discrepancy the first cable was carefully cut to a length corresponding to a multiple of  a 1/2 wavelength of the target frequency. The rationale behind this trick is described here, for instance.


   



 

Analogue receiver 

For a basic aviation band analog receiver one doesn't have to look further than ebay. A DIY PCB-kit with all the through-hole parts required was bougth from China for less than USD 15.00.

The instructions were a little vague on the critical orientation of some parts, but it turned out to work fairly well, considering the price. Reception tends to fade in and out, and the frequency regulating potentiometer range is perhaps unneccearily wide which makes it fiddly to tune in exactly.

The finished kit is just the exposed PCB, so it needs a fitting enclosure. A wooden box from a small IKEA cupboard fitted perfectly. The front panel is a piece of countertop laminate sample. Knobs and standoffs are courtesy of the scrap-box. The control pots are for tuning, squelch and volume.

The performance of this station was not too bad considering the unsophisticated components. However, the tuning is always unstable and lacking a proper frequency dial it easily gets very frustrating to grope around for a particular channel.

   




Digital receiver  

If you are not yet familiar with RTL-SDR, suffice it to say that it is a (free and open-source) software defined radio, SDR, that rather magically turns a Realtek RTL2832 based DVB dongle into a formidable SDR receiver. Basically, this means that a cheap TV tuner USB dongle can be used as a computer controlled radio scanner.

This powerful piece of digital radio hardware became the basis for our second airband receiver attempt. Compared to the standard DVB dongle used in our ADS-B project this time we pair an enhanced USB dongle from RTL-SDR.COM with an old Model A Rasperry Pi.

And, as usual when doing a fresh Raspbian install, and before anything else, it is prudent to change username and password from the defaults, expand the system on the flash-disc, and enable remote login.


This is the physical pinout (as per BCM GPIO numbering scheme) used in this implementation:
    RPi:    Connected to:
      4     Switch <SHTDWN>
     15     Piezo buzzer
     18     Switch <ENTER>
     22     Encoder: LSB (1)
     23     Encoder: 2nd (2)
     24     Encoder: 3rd (4)
     25     Encoder: 4th (8)
    GND     Common

    USB     SDR dongle






Software  

Specifically, we are using a program called rtl_fm, a plain command line FM demodulator which conveniently comes bundled in the official RTL-SDR release (among a number of other useful CLI tools). So firstly we need to install the RTLSDR libraries. They can be downloaded from hereTo manage the rtl_fm program effectively you'll first want to read its "manual" here.

As we begin to poke around the electromagnetic spectrum for interesting frequencies, it is definitely easiest to connect the dongle to a PC with a screen and use a GUI SDR receiver program with "waterfall" view, etc. One such is Gqrx. This way, one can note the actual frequencies for the most interesting airband channels, and use this list when configuring the standalone receiver.

The receiver is manually controlled via two momentary switches (aka pushbuttons) and one rotary encoder. This particular encoder switch has 16 notched positions and hence 2⁴ possible states signalled in 4-bit binary code, where the "nibble" is to be interpreted as straight hexadecimal, not Gray code.

The operational procedure in summary:

1)  A maximum of 16 rtl_fm-specific commands specifying different frequencies (simply named K01, K02, K03 ... etc) are stored as separate preconfigured shell scripts in the directory /home/<USERNAME>/pysh/sh/.

2)  The python script "K-selector.py" is automatically started, running as a demon in the background and monitoring the switch-state.

3)  In order to change channel, its analogue position is selected with the rotary knob and commited with the red ENTER button.

4)  This triggers the python script to calculate which channel is demanded and then launch rtl_fm with arguments inherited from the appropriate shell script file.

5)  The blue push-button switch is only used for system shutdown (via a system call sent from within the running python demon).


       








Comments 

You may mail me here: xneb.contact@gmail.com


 

Resources

The python and bash scripts used in this project can be found in the Github repo