Skip to main content

Read B&G Fastnet serial data, decode it, and broadcast it over UDP as NMEA 0183 or NMEA 2000

Project description

fastnet2ip

Fastnet is the proprietary serial protocol used by B&G on older instruments (tested on Hydra/H2000). fastnet2ip reads raw Fastnet data from a serial port, decodes it using pyfastnet, and broadcasts it over UDP in your choice of output format:

Output Flag Default port Use with
NMEA 0183 --output nmea0183 2002 Chart plotters, OpenCPN, most navigation software
NMEA 2000 --output nmea2000 2000 Actisense, Yacht Devices, Signal K server (via UDP)

--output nmea0183 is the default.

Installation

fastnet2ip is a Python application (requires Python 3.10+). The easiest way to install it as a self-contained command is pipx:

pipx install fastnet2ip

This puts a fastnet2ip command on your PATH in an isolated environment. To upgrade later:

pipx upgrade fastnet2ip
Alternative: install with pip into a virtual environment
python3 -m venv ~/fastnet2ip-venv
source ~/fastnet2ip-venv/bin/activate
pip install fastnet2ip

Upgrade with pip install --upgrade fastnet2ip.

Alternative: install from source (for development)
git clone https://github.com/ghotihook/fastnet2ip
cd fastnet2ip
python3 -m venv .venv
source .venv/bin/activate
pip install -e ".[test]"

This installs the package in editable mode along with the test dependencies.

Hardware

Fastnet uses two-wire differential transmission. RS-485 adapters work well; the CAN Hat option includes 120 ohm termination which is recommended.

Tested hardware

Wiring

Fastnet wire RS-485
White Data +
Green Data -

Serial settings: 28,800 baud, 8 data bits, odd parity, 2 stop bits

Running

Once installed, run the fastnet2ip command directly.

Live data from serial port

fastnet2ip --serial /dev/ttyUSB0 --output nmea0183 --live-data
fastnet2ip --serial /dev/ttyUSB0 --output nmea2000 --live-data

From a recorded hex file (testing)

fastnet2ip --file example1_fastnet_data.txt --output nmea0183 --live-data

Sample recordings live in tests/data/ in the source repository.

Console output — --live-data flag

Example console output

The application can also be invoked as a module: python3 -m fastnet2ip .... This is equivalent to the fastnet2ip command.

Command-line arguments

Shared

Argument Default Description
--output FORMAT nmea0183 nmea0183 or nmea2000
--serial PORT Serial port (e.g. /dev/ttyUSB0)
--file PATH Path to a recorded hex file
--log-level LEVEL INFO DEBUG, INFO, WARNING, ERROR
--live-data off Print live channel table to console once per second
--ignore-gps off Suppress GPS channels — see below
--ignore-heading off Suppress heading channels — see below
--host ADDR 255.255.255.255 UDP destination host
--udp-port N 2002 / 2000 UDP port (default depends on output mode)

NMEA 2000 (--output nmea2000)

Argument Default Description
--n2k-src N 201 N2K source address 0–253 (accepts hex: 0xC9)
--n2k-pri N 4 Message priority 0 (highest) – 7 (lowest)
--n2k-format FMT ydwg Wire format: ydwg or pcdin (see below)

Avoiding feedback loops: --ignore-gps and --ignore-heading

Most B&G systems receive GPS (and sometimes heading) from an external source and pass it through onto the Fastnet bus alongside the instrument data. If you also connect that same source directly to your network, re-broadcasting it from this bridge creates a feedback loop — downstream software sees the same data arriving twice, which can cause jumps, conflicts, or incorrect averaging.

Use --ignore-gps and/or --ignore-heading when that source is already on your network. Both flags work with --output nmea0183 and --output nmea2000.

--ignore-gps suppresses:

Fastnet channel NMEA 0183 NMEA 2000
LatLon GLL PGN 129025
Speed Over Ground VTG PGN 129026
Course Over Ground (True) VTG PGN 129026
Course Over Ground (Mag) VTG PGN 129026

--ignore-heading suppresses:

Fastnet channel NMEA 0183 NMEA 2000
Heading HDM / HDT PGN 127250
Heading (Raw) PGN 65281

If the bridge is the only source of that data on your network, omit these flags.

NMEA 0183 Output

Sentence Content
VHW Boatspeed; heading in True or Magnetic field per instrument configuration
DBT Depth below transducer
RSA Rudder angle
HDM Magnetic heading (emitted when instrument is configured for magnetic reference)
HDT True heading (emitted when instrument is configured for true reference)
MWD True wind direction and speed; direction True or Magnetic per instrument configuration
MWV True wind angle/speed (ref T)
MWV Apparent wind angle/speed (ref R)
MDA Air temp, sea temp, barometric pressure
VTG COG and SOG
VPW Velocity made good
VDR Tidal set and drift; set direction True or Magnetic per instrument configuration
GLL Latitude/Longitude

Note on True vs Magnetic: The Fastnet data stream carries no magnetic variation or deviation. Whether a channel is labelled True or Magnetic reflects the reference configured in the B&G instrument — not a computed conversion. VHW, HDM/HDT, MWD, and VDR will each output whichever reference the instrument is set to.

XDR transducers:

XDR name Content
BATTV Battery voltage
ROLL Heel angle (degrees)
PITCH Fore/aft trim (degrees)
RAW_WIND_A Apparent wind angle raw sensor value
RAW_WIND_S Apparent wind speed raw sensor value
RAW_BSP Boatspeed raw sensor value

NMEA 2000 Output

PGN Name
127245 Rudder
127250 Vessel Heading
127251 Rate of Turn
127257 Attitude (heel + trim)
127508 Battery Status
128000 Leeway
128259 Boat Speed
128267 Water Depth
128275 Distance Log
129025 Position
129026 COG & SOG
129283 Cross Track Error
129291 Set & Drift
130306 Wind Data (apparent, true boat-ref, true ground-ref)
130312 Temperature (sea + air)
130314 Pressure
65280 Proprietary: raw wind speed, wind angle
65281 Proprietary: raw heading
65282 Proprietary: raw boatspeed

Wire formats (--n2k-format):

  • ydwg — Yacht Devices RAW UDP: HH:MM:SS.mmm R XXXXXXXX DD DD DD...
  • pcdin — PCDIN sentences for Signal K server UDP input: $PCDIN,PPPPPP,TTTTTTTT,SS,DDDD...*CC

Running as a systemd service

For an always-on bridge (e.g. a Raspberry Pi), run fastnet2ip under systemd so it starts on boot and restarts on failure.

Don't use the pipx install for the service. pipx installs into a user's ~/.local/bin, which a root-run service can't rely on. For a service, install into a dedicated system virtual environment instead.

1. Install into a dedicated venv

sudo python3 -m venv /opt/fastnet2ip
sudo /opt/fastnet2ip/bin/pip install fastnet2ip

This gives you /opt/fastnet2ip/bin/fastnet2ip, the path the service below uses.

2. Create the unit file

Paste the following into /etc/systemd/system/fastnet2ip.service (e.g. sudo nano /etc/systemd/system/fastnet2ip.service). The same template ships as fastnet2ip.service in the source repository if you'd rather copy it.

[Unit]
Description=fastnet2ip Service
####################################### CHANGE THIS IF PORT CHANGES
After=dev-ttyUSB0.device
BindsTo=dev-ttyUSB0.device

[Service]
Type=simple
User=root
WorkingDirectory=/opt/fastnet2ip
# Uncomment ONE ExecStart line for the output mode you want:
# NMEA 2000 output:
ExecStart=/opt/fastnet2ip/bin/fastnet2ip --output nmea2000 --serial /dev/ttyUSB0 --udp-port 2000 --n2k-format ydwg --n2k-src 201 --n2k-pri 4 --ignore-gps --log-level INFO
# NMEA 0183 output:
#ExecStart=/opt/fastnet2ip/bin/fastnet2ip --output nmea0183 --serial /dev/ttyUSB0 --udp-port 2002 --log-level INFO
Restart=always
RestartSec=10

# === RESOURCE LIMITS ===
OOMScoreAdjust=-700
OOMPolicy=continue
MemoryMax=128M
MemoryHigh=96M
TimeoutStopSec=30

# === LOGGING ===
StandardOutput=journal
StandardError=journal
SyslogIdentifier=fastnet2ip
Environment=PYTHONUNBUFFERED=1

[Install]
WantedBy=multi-user.target

Before enabling, edit it to match your setup:

  • After= / BindsTo= — your serial device, written in systemd's escaped form (/dev/ttyUSB0dev-ttyUSB0.device)
  • the active ExecStart= — pick one line (NMEA 0183 or NMEA 2000) and set the correct --serial port

3. Enable and start it

sudo systemctl daemon-reload
sudo systemctl enable fastnet2ip
sudo systemctl start fastnet2ip
sudo journalctl -u fastnet2ip -f      # follow the logs

To upgrade later: sudo /opt/fastnet2ip/bin/pip install --upgrade fastnet2ip && sudo systemctl restart fastnet2ip.

Bench testing tools

Two helper scripts for capturing and replaying Fastnet data live in the tools/ directory of the source repository (they are not installed by pip/pipx — clone the repo to use them):

Record raw Fastnet data to file

python3 tools/record_fn.py --port /dev/ttyUSB0 --output my_capture.txt

Play back a recording to a serial port

python3 tools/playback_fn.py --port /dev/ttyUSB1 --input my_capture.txt

Recordings can also be replayed through the main app with fastnet2ip --file my_capture.txt.

How it works

Serial port / hex file
        │
        ▼
  pyfastnet FrameBuffer     ← byte sync, checksum, channel decoding
        │
        ▼
  Live data store           ← latest value per channel
        │
        ▼
  Output handler            ← nmea0183 or nmea2000, selected by --output
        │
        ▼
  UDP broadcast

A message is sent when a value changes, or after 5 seconds if unchanged (so downstream apps don't lose data during quiet periods).

To add a new output format, implement OutputHandler in fastnet2ip/handlers/ and add it to _HANDLERS in fastnet2ip/__main__.py.

What this app does vs. pyfastnet

pyfastnet handles the protocol layer: frame sync, checksums, and decoding raw bytes into named instrument channels. This app handles everything above that: reading the serial port, maintaining a live data store, mapping channels to output sentences/frames, rate limiting, and UDP broadcast.

Development

git clone https://github.com/ghotihook/fastnet2ip
cd fastnet2ip
python3 -m venv .venv
source .venv/bin/activate
pip install -e ".[test]"
pytest

To build distributable artifacts:

pip install build
python -m build        # writes sdist + wheel to dist/

Releasing to PyPI

The version is defined in a single place — __version__ in fastnet2ip/__init__.py — which pyproject.toml reads automatically.

1. Bump the version in fastnet2ip/__init__.py following semver:

Change Example When
patch 1.0.01.0.1 bug fixes, no behaviour change
minor 1.0.01.1.0 new backward-compatible feature (e.g. a new flag)
major 1.0.02.0.0 breaking change (removed/renamed flags, changed defaults)

2. Rebuild clean and validate (stale files in dist/ would otherwise be uploaded):

rm -rf dist build *.egg-info
python -m build
twine check dist/*

3. Tag and upload:

git commit -am "Release X.Y.Z"
git tag vX.Y.Z
git push origin main --tags
twine upload dist/*          # needs a PyPI account + API token in ~/.pypirc

4. Users upgrade with pipx upgrade fastnet2ip (or pip install --upgrade fastnet2ip).

PyPI never lets you re-upload an existing version — even a deleted or "yanked" one. If a release has a bug, bump to the next patch version and re-publish; you can never overwrite a number that's already live.

Acknowledgments

  • trlafleur — collected significant background research
  • Oppedijk — protocol background
  • timmathews — substantial C++ implementation

License

MIT — see LICENSE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fastnet2ip-1.0.2.tar.gz (30.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

fastnet2ip-1.0.2-py3-none-any.whl (23.4 kB view details)

Uploaded Python 3

File details

Details for the file fastnet2ip-1.0.2.tar.gz.

File metadata

  • Download URL: fastnet2ip-1.0.2.tar.gz
  • Upload date:
  • Size: 30.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for fastnet2ip-1.0.2.tar.gz
Algorithm Hash digest
SHA256 0072eccd18a7b69314b13af0ce8f5b9e68a292a9d38562159414549c730531d3
MD5 34ae4d0a745742dab4d7b9af414dd201
BLAKE2b-256 d188133f7652b2c92296862c8be3ff63475c7e213c2259a4b81b9dc941b6cb0c

See more details on using hashes here.

File details

Details for the file fastnet2ip-1.0.2-py3-none-any.whl.

File metadata

  • Download URL: fastnet2ip-1.0.2-py3-none-any.whl
  • Upload date:
  • Size: 23.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for fastnet2ip-1.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 1c200341cc99ec8e74c2092eb0041ad0967506c932d926f40f67ccb515839104
MD5 4939f3fc8685a3ae24465dccd97f7f75
BLAKE2b-256 2ae37d305867e2c432aee3fa758e12daf88944c03ce526ace69c6fc15cf85d14

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page