Locodoco/Position Tracking

Aus LaborWiki
Wechseln zu: Navigation, Suche


Intro

Fig. 1: Waypoint transmitters in the track
First prototype of the Waypoint transmitter built into the track

In other model railroad automation systems, track occupation detection is usually done by occupancy detectors that measure the resistance of the two rails - with magnets and reed contacts - or infrared light barriers. These devices either need some additional wiring back to the controller to give feedback or send their information back to the track - however they all aren't as portable and require extensive (and visible) modifications.

Since the Locodoco onboard decoder for the locos utilizes a radio transmitter anyway, it is possible for a loco to send this piece of information back to the controller itself. The locos are equipped with an infrared transceiver which makes them able to read the codes that the waypoint transmitters emit.

Waypoint Transmitter

view from the bottom: Attiny45 (left), 78L05 (right) and a bridge rectifier on the right

A waypoint transmitter consists of a tiny AVR microcontroller that continuously transmits the same sequence of bits while it is turned on. An infrared LED connected to one of the AVR's output drivers can be installed in turnouts and normal track to mark a position.

The waypoint transmitter fits underneath (or better said into) a single track brick of the standard LGB track and is visually almost completely hidden (just the transmitter diode peeking out). It consists of an infrared transceiver, an Attiny45 (or pin-compatible processor), a voltage regulator (78L05) and some capacitors. The device is designed to be powered by the track, which also makes it suitable for "mobile" track layouts.

Speed measurement

Given the distance of two waypoints is known and the speed of the loco is constant, one can measure how fast the loco is running. When making this distance very small, slight accelleration or decelleration of the loco running over the two points may be interpolated or ignored. The Waypoint Transmitter has some additional unconnected pins, which may be used for additional transmitter diodes sending a different code.

Protocol

Waypoint transmitters emit the code at a rate of 38400 bit/s. At each sequence, the waypoint transmitter sends out 24 bits containing its unique ID (16 bits) plus 8 additional bits that consist of the type of protocol and checksum. The overhead from the uart protocol adds 6 more bits (1 parity + 1 stop bit for each Byte sent).

In detail, the sequence looks as follows:

 [ 2b protocol type, 2b output number, 4b xor checksum | 16b ID Code ]

Assuming the range at which the loco passing the waypoint transmitter is in the correct position for receiving the sequence is 1cm (d in Fig. 1) and 32 bits are sent at each broadcast, the maximum speed at which the system can reliably (receiving >= 2 beacons while passing the point) receive information is 6m/s (=21.6 Km/h). - which is more than enough, even for the fastest trains.

Protocol Type

The Protocol Type field for the above protocol is filled with binary zeroes (00b).

Output numbers

The output numbering scheme allows for using up to 4 outputs (LEDs) on the same waypoint transmitter. This may be useful for turnouts (even 3-way turnouts or crossings). Output numbers are encoded in binary (LSB first), counting from 0 (00b) to 3 (11b).

Checksum

The Checksum is the 4-bit XOR product over the ID, the output number and the protocol type field. The protocol type and the output number are interpreted as an entire 4-bit block:

Here's the pseudocode for the checksum generation:

checksum = ((protocol_type << 2) | output_number) ^ id[15..12] ^ id[11..8] ^ id[7..4] ^ id[3..0]

id[b..a] denotes the bits of the id field a to b (inclusive). Bits are always counted LSB first (therefore 0 is the rightmost - 15 the rightmost).



Locodoco Project | Position tracking system | Loco decoder | Webinterface