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 NMEA;
use String;
let mut nmea = NMEAnew;
nmea.update;
info!;
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