From 52c3c98f2e5d9d86bcaab514dfeaf37ea07217ea Mon Sep 17 00:00:00 2001 From: Morten Nielsen Date: Fri, 25 Jul 2014 13:01:36 -0700 Subject: [PATCH] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e4e0bc2..1a48279 100644 --- a/README.md +++ b/README.md @@ -5,10 +5,10 @@ Library for handling data NMEA streams coming in from Bluetooth devices in Windo There's also generic support for NMEA files (for simulation/playback) and raw streams. -This library makes it easy to connect and listen for NMEA messages from Bluetooth Devices in Windows Store and Windows Phone apps. +This library makes it easy to connect and listen for NMEA messages from various Devices in Windows Store, Windows Phone and Windows Desktop apps. -Currently supported devices: -- Generic GPS NMEA +Currently supported nmea messages: +- Generic GPS NMEA (GPRMC and GPGGA) - Trimble Laser Range Finder - TruePulse Laser Range Finder @@ -21,7 +21,7 @@ public class Gprmc : NmeaMessage { protected override void LoadMessage(string[] message) { - //Process message parts + //TODO: Process message parts } } ```