Skip to content

Instantly share code, notes, and snippets.

View lnaie's full-sized avatar
🏠

Lucian Naie lnaie

🏠
View GitHub Profile
@andrewminerd
andrewminerd / nmea.cs
Created August 4, 2011 04:17
Simple C# NMEA (GPS) parser, made for the Netduino
using System;
namespace Nmea
{
class Parser
{
private enum STATES : byte
{
begin, body, checksum1, checksum2, checksum_lr, checksum_cf, cf
}