code:interrupt_driven_nmea
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
code:interrupt_driven_nmea [2008/04/23 00:43] – laurenceb | code:interrupt_driven_nmea [2013/04/18 20:00] (current) – Reports code isn't tested so just put a notice on there upu | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | This is a rather unconvensional approach to a NMEA parser - completely based on an ISR to parse the incoming bytes. It uses 2.2KB of code space and 44 bytes of RAM. | + | **This code hasn't been tested and is believe not to work** |
+ | |||
+ | |||
+ | This is a rather unconvensional approach to a NMEA parser - completely based on an ISR to parse the incoming bytes. It uses 1.9KB of code space and 44 bytes of RAM. Should run in less than 10us at 18MHz. | ||
<code c># | <code c># | ||
//global(s) | //global(s) | ||
- | extern gps_type | + | extern gps_type |
+ | |||
// Interrupt driven NMEA parser for Atmel AVR | // Interrupt driven NMEA parser for Atmel AVR | ||
- | + | ||
- | ISR(USART_RX_vect) //UART interrupt on mega xx8 series | + | ISR(USART_RX_vect) //UART interrupt on mega xx8 series |
{ | { | ||
static char buffer[6]; | static char buffer[6]; | ||
Line 17: | Line 20: | ||
static u08 bufferindex; | static u08 bufferindex; | ||
static u08 pointcount; | static u08 pointcount; | ||
+ | static gps_type gps; | ||
char c=UDR0; | char c=UDR0; | ||
switch(c) | switch(c) | ||
Line 22: | Line 26: | ||
case ' | case ' | ||
commacount=0; | commacount=0; | ||
- | bufferindex=0; | ||
- | pointcount=0; | ||
- | stage=FALSE; | ||
- | memset(buffer,' | ||
GGA=FALSE; | GGA=FALSE; | ||
- | RMC=FALSE; //we dont know what sort of packet it is yet | + | RMC=FALSE; //we dont know what sort of packet it is yet |
- | break; | + | case ',': |
- | case ',': | + | commacount++; |
- | commacount++; | + | bufferindex=0; |
- | bufferindex=0; | + | |
pointcount=0; | pointcount=0; | ||
stage=FALSE; | stage=FALSE; | ||
+ | memset(buffer,' | ||
break; | break; | ||
case ' | case ' | ||
- | pointcount++; | + | pointcount++; |
break; | break; | ||
- | default: //we have some of the CSV data | + | default: //we have some of the CSV data |
- | if(bufferindex< | + | if(bufferindex< |
{ | { | ||
- | buffer[bufferindex]=c; | + | buffer[bufferindex]=c; |
} | } | ||
if(GGA) | if(GGA) | ||
Line 47: | Line 47: | ||
switch(commacount) | switch(commacount) | ||
{ | { | ||
- | case | + | case |
if( (bufferindex< | if( (bufferindex< | ||
{ | { | ||
Line 56: | Line 56: | ||
if(!stage) | if(!stage) | ||
{ | { | ||
- | gps.latitude=(float)atoi(buffer); | + | gps.latitude=(float)atoi(buffer); |
stage=TRUE; | stage=TRUE; | ||
} | } | ||
Line 63: | Line 63: | ||
gps.latitude+=minutes*(float)atoi(buffer); | gps.latitude+=minutes*(float)atoi(buffer); | ||
} | } | ||
- | memset(buffer,' | ||
} | } | ||
break; | break; | ||
- | case | + | case |
if(c==' | if(c==' | ||
{ | { | ||
Line 72: | Line 71: | ||
} | } | ||
break; | break; | ||
- | case | + | case |
if( (bufferindex< | if( (bufferindex< | ||
{ | { | ||
Line 81: | Line 80: | ||
if(!stage) | if(!stage) | ||
{ | { | ||
- | gps.longitude=(float)atoi(buffer); | + | gps.longitude=(float)atoi(buffer); |
stage=TRUE; | stage=TRUE; | ||
} | } | ||
else | else | ||
{ | { | ||
- | gps.longitude+=minutes*(float)atoi(buffer); | + | gps.longitude+=minutes*(float)atoi(buffer); |
} | } | ||
- | memset(buffer,' | ||
} | } | ||
break; | break; | ||
- | case | + | case |
if(c==' | if(c==' | ||
{ | { | ||
Line 97: | Line 95: | ||
} | } | ||
break; | break; | ||
- | case | + | case |
gps.status=atoi(& | gps.status=atoi(& | ||
break; | break; | ||
- | case | + | case |
if(!pointcount) // | if(!pointcount) // | ||
{ | { | ||
Line 108: | Line 106: | ||
{ | { | ||
gps.altitude=(float)atoi(buffer)*0.1; | gps.altitude=(float)atoi(buffer)*0.1; | ||
- | memset(buffer,' | ||
} | } | ||
} | } | ||
Line 114: | Line 111: | ||
else if(RMC) | else if(RMC) | ||
{ | { | ||
- | if(commacount==7) //speed in knots | + | if(commacount==8) //speed in knots |
{ | { | ||
if(!pointcount) | if(!pointcount) | ||
Line 123: | Line 120: | ||
{ | { | ||
gps.speed=(float)atoi(buffer)*0.1; | gps.speed=(float)atoi(buffer)*0.1; | ||
- | memset(buffer,' | ||
} | } | ||
} | } | ||
- | if(commacount==8) //the heading | + | if(commacount==9) //the heading |
{ | { | ||
- | + | ||
if(!pointcount) | if(!pointcount) | ||
{ | { | ||
Line 136: | Line 132: | ||
{ | { | ||
gps.heading=(float)atoi(buffer)*0.1; | gps.heading=(float)atoi(buffer)*0.1; | ||
- | memset(buffer,' | + | toggle_pin; |
- | gps.packetflag=TRUE; | + | if(!Gps.packetflag) //main has unlocked the data |
+ | { | ||
+ | Gps.packetflag=TRUE; | ||
+ | Gps=gps; | ||
+ | } | ||
} | } | ||
} | } | ||
} | } | ||
- | else if(!commacount) // | + | else if(!commacount) //the header |
{ | { | ||
if(bufferindex< | if(bufferindex< | ||
Line 157: | Line 157: | ||
RMC=TRUE; | RMC=TRUE; | ||
} | } | ||
- | memset(buffer,' | ||
} | } | ||
} | } | ||
} | } | ||
- | } | + | } |
</ | </ |
code/interrupt_driven_nmea.1208911424.txt.gz · Last modified: 2008/07/19 23:31 (external edit)