Jump to content
43oh

[POTM] dAISy - A Simple AIS Receiver


Recommended Posts

Overview
dAISy (do AIS yourself) is a very simple AIS receiver that I developed from scratch. It is built around the Silicon Labs EZRadioPRO Si4362 receiver, using a Texas Instruments MSP430G2553 MCU for processing and the MSP-EXP430G2 v1.5 LaunchPad as development platform.

The complete project source code and schematics are available on GitHub: https://github.com/astuder/dAISy

Update 5/18/2015: A finished, self-contained AIS receiver based on this project is now available for purchase in my web store.
 
AIS, short for Automatic Identification System, is a standard for tracking ships. Ships advertise their position, course and other information with short transmissions on specific frequencies (161.975 MHz and 162.025 MHz). More on Wikipedia.
 
An AIS receiver, like dAISy, receives and decodes AIS transmissions. It then re-packages the raw data into NMEA sentences (specifically formatted ASCII strings). Finally, using a serial connection, these strings are forwarded to more capable equipment for further processing.
 
post-9974-0-42726300-1388010922_thumb.jpg
 
If you're the lucky owner of a tricked out boat, you could connect dAISy to your navigation computer. For land lobbers like me, a more common use case is to run naval mapping software that supports AIS data input on a PC. In the screenshot below I've connected dAISy to OpenCPN (link), an open source chart plotter and navigation software.
 
post-9974-0-16314500-1388010958_thumb.jpg
 
On the top right you can see my setup war-driving at the Seattle waterfront as my lab is too far from the coast to receive anything. The LaunchPad sits on the dashboard with a white USB cable connecting to the notebook computer in the foreground.
 
dAISy's data is fed into OpenCPN, bottom right shows a log of the serial data received. OpenCPN maintains a database of all the collected data (lower left) and visualizes nearby ships on a map (top center), including past and projected course. Hovering the mouse over a ship will display its name (text on yellow ground) and clicking it will reveal more detail (top left).
 
Hardware
I wanted to build my own, non-SDR, AIS receiver for a long time. There are a few projects floating around the internet (e.g. here) which refer back to an article by Peter Baston, published 2008 in Circuit Cellar magazine (copy available here gone.. google for Peter Baston Circuit Cellar to find other copies). Unfortunately, the CMX family of modem ICs by CMS Microcircuits (link) used in these projects are relatively expensive ($15+) and hard to find for hobbyists. In addition you'd need a radio to do tune into and down-convert from the ~162 MHz carrier frequency.
 
So I was quite excited when earlier this year a parametric search on Mouser brought up a new IC  that covered the required range (162 MHz) and modulation (GMSK). And best of all, available in single quantities for $3.56 $2.27 $2.22! (link)
 
The Silicon Labs EzRadioPRO Si4362 (link) is a single chip receiver that covers frequencies from 142 to 1050 MHz and supports various modulations, including GMSK. It comes in a tiny 20-pin QFN package and the only external parts required are a 30 MHz crystal, an antenna with a few capacitors and inductors for impedance matching, and finally some decoupling caps and pull-down resistors.
 
Time to whip up a breakout board. I used the opportunity to give KiCad a try and quite like it.
 
Here's the schematic:
post-9974-0-37665900-1388275032_thumb.png
 
And the layout:
post-9974-0-81346400-1388275067_thumb.png
 
I used OSHPark to make the PCBs. At a smidgen over one square inch it cost  $5.15 for 3 copies:
post-9974-0-22865500-1388275106_thumb.png
http://oshpark.com/shared_projects/QUWi71r4
 
Note that the layout still has three issues that I already fixed in the schematic:

  • GPIO0 and GPIO1 were flipped
  • SDO required a pull-down resistor as the radio leaves it floating when not actively sending, which confused the hell out of me while trying to figure out the communication protocol.
  • Lastly, the holes for the headers turned out to be slightly too small to comfortably fit the cheap breakout headers I had at hand.

Edit: Here's Rev B where I fixed these issues: http://oshpark.com/shared_projects/WI6u3Qmk
 
Which brings us to the BOM:

  • Silicon Labs Si4362 (U1)
  • 30 MHz crystal (X1)
    • Si4362 datasheet specifies <11 pF load capacitance, but a crystal specified for 12pF load capacitance seems to work fine too
  • Antenna/LNA matching network, calculated based on SiLabs AN643 (link, approx. values, +/- 5% shouldn't matter too much):
    • 75 ohm (dipole): 10 pF (CR1), 5 pF (CR2), 280 nH (LR1), 200 nH (LR2)
    • 50 ohm: 12 pF (CR1), 6 pF (CR2), 240 nH (LR1), 160 nH (LR2)
  • Decoupling caps:
    • 100 pF, 100 nF, 1uF (C1, C2, C3)
  • Pull-down resistors
    • 100 k (R1, R2)

First thing I noticed when I received the parts: The 20-pin QFN at 4x4 millimeters is tiny! :blink:
post-9974-0-06714100-1388275196_thumb.jpg
 
I mounted it by first tinning the pads with a small quantity of solder. I then added flux and placed the chip on the pad. I then used a hot air station to carefully reflow the solder. Worked the first time around.

After using jumper wires to figure out how to talk to the chip, I mounted the breakout board on a makeshift BoosterPack using perfboard, double-sided tape and wire (see picture at the top of the post).

post-9974-0-37646600-1388011881_thumb.jpg

Here's how I ended up connecting the breakout board to the LaunchPad / MSP430G2553:

  • SEL -> P1.4 (SPI chip select)
  • SCLK -> P1.5 (SPI CLK)
  • SDO -> P1.6 (SPI MISO)
  • SDI -> P1.7 (SPI MOSI)
  • GPIO0 -> P2.0 (I/O unused)
  • GPIO1 -> P2.1 (I/O clear-to-send)
  • GPIO2 -> P2.2 (I/O RX clock)
  • GPIO3 -> P2.3 (I/O RX data)
  • SDN -> P2.4 (shutdown / reset)
  • IRQ -> P2.5 (I/O channel-clear)

Software
The software of dAISy consists of three major blocks:

  • Radio configuration and control over SPI
  • Packet handler, including a basic FIFO for received messages
  • NMEA encoding and transmission to the PC over UART

For UART (TX only) and SPI (TX/RX) I use the MSP430G2553's USCI A0 and B0 respectively. In both cases I don't use interrupts which simplifies things considerably.
 
Upon reset the following steps happen:

  • Initialize MSP430 peripherals
  • Initialize packet handler, which will also reset FIFO
  • Initialize and configure of radio, which will also setup SPI
  • Start packet handler, which will also put the radio into receive mode

And in the main loop:

  • If debug messages are enabled, poll packet handler for status and errors and report them over UART
  • Check FIFO for new packets
  • If there is a new packet, invoke NMEA processing (which sends the message over serial to the PC) and remove packet from FIFO

Below follows a more detailed discussion of the radio integration and the implementation of the packet handler.
 
Radio
The communication with the radio is vanilla SPI using 4 wires: MOSI (SDI), MISO (SDO), CLK (SCLK) and CS (SEL). I used the MSP430's USCI B0 to implement SPI and a separate pin to control CS.
 
The only tricky thing to figure out was, that the Si4362 keeps the MISO line floating unless it actively transmits data. This is unfortunate as the master is supposed to poll for a specific response (FF) to detect when the radio is ready to receive more commands. This is easily fixed by adding a weak pull down resistor to SDO. I did this on the board, but it probably also works with using MSP430's internal pull-down.
 
Additional lines I used to control the radio are:

  • SDN to reset the radio
  • CTS, which by default is mapped to the radio's GPIO1, indicating that the radio is ready for the next command

While taking up an extra pin, CTS turned out to be much more convenient than the SPI response code to properly time communication flow with the radio. In dAISy, I wait for CTS to go high after each command to ensure the radio completed its task.
 
The communication protocol is quite extensive but well documented:

  • EZRadioPRO API Documentation describes the complete API and all registers
  • AN633 Programming Guide for EZRadioPro Si4x6x Devices describes how to use the API in common scenarios

Both are available on the Si4362 product page (link), under Documentation > Application Notes and are still updated quite frequently.
 
The radio is set up by dumping a large configuration sequence into it. This includes configuration of radio frequency, modulation, GPIO pins and more. This information is stored in radio_config.h, which has to be generated with a tool called WDS (Wireless Development Suite). WDS is available in the Tools section on the Si4362 product site.
 
post-9974-0-16765300-1388531198_thumb.png
 
Above are the settings I used for dAISy. WDS will use this information to configure various amplifiers, filters, clocks and decoding algorithms inside the chip. As Si4362 supports GMSK encoding only indirectly (see this thread), I'm certain there's more optimization potential by tweaking registers, but that's currently way beyond my knowledge of RF theory.
 
While the Si4362 comes with its own packet handler, it unfortunately does not support NRZI encoding (Wikipedia). So I set up the radio to expose the 9600 baud clock and received data on separate pins and implemented my own packet handler.
 
Packet Handler
The packet handler (inspired by Peter Baston's implementation) is implemented as a state machine that is invoked on each rising edge of pin P2.2 which receives the data clock.
 
post-9974-0-98672100-1390682294_thumb.png
There are 5 main states:

  • Off, no processing of incoming data
  • Reset, start from anew, either on start up or after successful/failed processing of a packet
  • Wait for Sync, waiting for a training sequence to arrive (010101..) and start flag (01111110), implemented with its own state machine
    •  
    • Reset, start new preamble
    • 0, last bit was a zero
    • 1, last bit was a one
    • flag, training sequence complete, now process start flag
  • Prefetch, ingest the next 8 message bits to ease further processing
  • Receive Packet, process bits until the end flag (01111110) is found or an error situation occurs

Independent of state, the interrupt routine continually decodes NRZI into actual bit sequence.
 
In the "Receive Packet" state there's continuous calculation of the packet CRC and some bit-de-stuffing. When the end flag is found and the CRC is correct, the received message is committed into the FIFO. If an error is encountered, the bytes already written to the FIFO are discarded. In both cases, the state machine starts anew by transitioning into RESET.
This reads like a lot of code for an interrupt handler. However with the MCU running at 16MHz even the most complex state only uses a fraction (<10%) of the available time.
 
Future Improvements
Lastly a list of things I'd like to improve with the next version of dAISy.
 
Software:

  • Receiving on both AIS channels through channel-hopping done 1/5/2014
  • Tweak radio settings for better sensitivity and lower error rate
  • LED(s) for indicating reception of valid/corrupt packets

Hardware:

  • Proper antenna connector
  • Layout PCB as BoosterPack and/or USB dongle
  • Receiving on both AIS channels at once with two radio ICs

-- edit 12/25: replaced original post with high-level project description, more detailed documentation of implementation to come
-- edit 12/28: added documentation for hardware (here and on Github), fixed some typos
-- edit 12/31: added documentation for software and list of future improvements
-- edit 01/05: implemented channel hopping (change to state machine)
-- edit 01/15: changed state machine to reflect recent changes (see post further down for details), added link to shared project on OSHPark
-- edit 01/25: major rework of sync detection state machine

post-9974-0-16314500-1388010958_thumb.jpg

Link to post
Share on other sites
  • Replies 327
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

Popular Posts

Overview dAISy (do AIS yourself) is a very simple AIS receiver that I developed from scratch. It is built around the Silicon Labs EZRadioPRO Si4362 receiver, using a Texas Instruments MSP430G2553 MC

Ain't she pretty?    

Good news for everyone having difficulties sourcing the Si4362 radio IC.   I verified that the transceiver Si4463 works with dAISy. This probably also applies to Si4460 and Si4461. Besides being mor

Posted Images

@@simpleavr No, the received data is very precise. But unfortunately I forgot to update the default low-res vector map of OpenCPN on my notebook before heading out. There are free high resolution navigational maps that one has to download and install seperately.

 

Below how the background would have looked like when adding local maps. I'll do another screenshot when I head out next time.

 

--edit: forgot attachment

post-9974-0-69197300-1388012669_thumb.jpg

Link to post
Share on other sites

Not very useful for the average joe I guess

 

Thanks for shattering my plans for consumer gadget world domination :)

 

Technically the range of AIS is about 50 nautical miles, but that requires an unobstructed view and a properly placed and tuned antenna.

http://www.marinetraffic.com/p/faq#4

 

With my wimpy dipole antenna (two straight hookup wires) and the wrong impedance matching (50 ohm instead of 73 for a dipole) I was able to receive the packets from the base station 11 kilometers away when in line of sight. When I was parked at the waterfront with the antenna laying on my car's dashboard, I was able to receive messages of ships in line of sight about 2.5 kilometers away and 500 meters when obstructed by buildings.

Link to post
Share on other sites

Finished up project documentation by adding description of software implementation and a list of future improvements.

 

As I've no inkling about RF, I'm open for any input on how to improve sensitivity and lower error rate.

 

And to an earlier question by @@simpleavr, below a recent annotated screen capture with more detailed maps and some action. I was located at the red X.

post-9974-0-30025500-1388532530_thumb.jpg

 

Link to post
Share on other sites

Implemented channel hopping, i.e. the receiver jumps between the two AIS channels.

 

A frequency hop happens when the preamble isn't found within a certain time, currently set to 6 clock ticks (PH_TIMEOUT_PREAMBLE macro).

 

Ideally the timeout should be short to minimize the chances of missing a preamble on the other channel (total preamble is 24 bits). However there's also the overhead of reconfiguring the radio (about 1.5 clock ticks). I will have to experiment with this in the field to see if I can shorten it to 4 clock ticks, or reduce the minimum preamble length (currently 16 bits). The goal is to catch a preamble no matter on what channel it is sent.

Link to post
Share on other sites

Thanks @@markf

 

Given the QFN package of the radio, selling kits would probably be a support nightmare. Also, the current version is not very sensitive. I'll need to do a few more revisions before I'd feel comfortable asking money for it.

 

I'm happy to send you a spare PCB and parts if you want to experiment yourself - and have the equipment to solder QFN!

Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.


×
×
  • Create New...