tiny-nmea 0.1.0

A tiny NMEA parser for embedded systems. Works with `#[no_std]` and doesn't require heap allocation. and doesn't require heap allocation
Documentation
  • Coverage
  • 0%
    0 out of 11 items documented0 out of 5 items with examples
  • Size
  • Source code size: 496.33 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 989.02 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 12s Average build duration of successful builds.
  • all releases: 12s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • McMaster-Rocketry-Team/Rust_Monorepo
    10 3 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • Redrield

Tiny NMEA

A tiny NMEA parser for embedded systems. Works in #[no_std] and don't need a memory allocator.

Supported Sentences

  • GSV
  • GLL

Example

use tiny_nmea::NMEA;
use heapless::String;

let mut nmea = NMEA::new();
nmea.update(&String::from("$GNGLL,4315.68533,N,07955.20234,W,080023.000,A,A*5D\r\n"));
info!("longitude: {}", nmea.longitude.unwrap());

Sample Data

The nmea.txt file in this directory contains around 20 minutes of NMEA data from a GPS receiver. At around 13000 line, the GPS receiver obtained a fix.

TODO

  • Error handling