Howto:Build your own procedure trainer

From FlightGear wiki
Revision as of 22:28, 30 November 2009 by T3r (talk | contribs) (→‎Circuit Board)
Jump to navigation Jump to search
A first version of the PMPT - functional!

This page is about building your own procedure trainer device using basically FlightGear, other OpenSource software and home brew hardware. It is probably far from being a FNPT Flight Navigation Procedure Trainer , so I'd like to call it a PMPT for Poor Man's Procedure Trainer. The goal is to have most of the components, "real" FNPT have:

  • A realistic flight dynamics model
  • An instrument panel with realistic looking instruments and controls with realistic behaviour.
  • An outside 3d-view rendering the world scenery (but not our own aircraft)
  • As many controls as affordable (yoke, rudder, switches, buttons, radios)
  • Aircraft is completely flyable without keyboard and/or mouse

The content of this page is growing slowy due to limited spare time. I run this as a low priority task and add something whenever I can spare a timeslice. If you are in desperate need for special information regarding the PMPT, feel free to contact the author by private mail at Torsten@nospam t3r.de. Please ignore the word nospam.

The Components

General Schematic of the PMPT

Bearing the first 'P' of the acronym in mind, most of the hardware is non-state-of-the-art, either from the attic (to bad to be used but to good to be thrown away) or bought second/third hand. The main components are:

  • A PC with a 2GHz Athlon, 1.5GB RAM, 100GB HD and a nVidia 7950 graphics card. This is the work horse and the main FlightGear computer.
  • A second PC, a former diskless "thin client". It has a 1GHz Athlon CPU, 512MB RAM and I replaced the builtin 256MB compact flash memory with an old 4GB microdrive from my old iPod mini which was unusable due to it's dead battery. The only new item is a nVidia 6xxx graphics card which sits now it the PC's only PCI slot. This PC drives the panel displays.
  • Two 15" TFT 1280x1024 displays (for a few EURO at ebay) were stripped from their chassis and serve as the panel displays.
  • Two 19" TFT 1280x1024 displays (for a few EURO at ebay) sit on top for the outside view.
  • A ELITE ProPanel II - this is the most expensive part of the entire PMPT. Also from eBay, came together with the rudder pedals from FlightLink.
  • A tiny PC with a touchscreen display, running a Pentium at 600MHz and 256MB RAM is for the moving map application Atlas.
  • The homemade USB controller are based on ATMEL microcontroller for less than 10 EURO.
  • Ethernet HUP, Cables

Flight Dynamics Model

This is no sweat at all! FlightGear comes with usable, good and even excellent flight dynamics models out of the box. This HOWTO focuses on a Seneca procedure trainer and uses the SenecaII from the FlightGear base package but can be adapted to other aircraft. One computer running a FlightGear instance computes the FDM, renders the scenery and receives all the input from various controls. Hey that's basic FlightGear operation? Yes, read on for the goodies!

Instrument Panel

Outside View

The instrument panel, front panel removed
The instrument panel interior
The instrument panel's screen mask (back side)
A rotary encoder
Another view of a rotary encoder

Yoke and Switch Panel

Rudder Pedals

Radio Panel


The Basic Hardware Interface

The Almighty USB HID Controller

The USB HID controller

To make interfacing to FlightGear easy without the need for hardware drivers, a special controller hardware is used. This is based on a commonly available microcontroller, the ATMEL ATMega8-16. It has basically everything needed for I/O handling and most important: it can easily be programmed without the need for a special programmer hardware and a GPL'ed implementation of the USB1.1 protocol stack is available from obdev.at.


Circuit Board

The USB HID controller's cirtuic diagram
The USB HID controller's back side

This is the basic circuit diagram for the USB HID controller based on ATMEL's ATMega8. It runs on an 12MHz clock, so be sure to get the 16MHz version. The 27pF capacitors are of ceramic disc type. The 100nF capacitor should be close to the controller with short wires to the supply voltage. The two Z-diodes limit the USB bus voltage and the 1k5Ohm Resistor tells the USB host that this is a low speed device. Check obdev.at's site for details. Their reference projects contains tons of information and further readings. The circuit is so simple, it can easily be built on a prototype board. It leaves us 18 I/O ports, 6 of them may be analog/digital converters. Not bad for a less-than 20$ Hardware.

Firmware

The ATMega8 itself needs a firmware before it is usable for our PMPT and to be recognized as a USB HID device. The source code for the firmware is mostly written in C and can be compiled with the avr-gcc toolchain. To get the resulting binary into the controller, no special programmer hardware is needed as long as you have a computer with a parallel port. Here is a description of the required interface - just two resistors and five wires between your computer and the controller do the trick. Your best friend for programming the ATMega is a dude called avrdude.

Panel Controller

Basic wiring of the encoders

Yoke Controller