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/20 14:30] – 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[5]; | + | static char buffer[6]; |
static u08 GGA; | static u08 GGA; | ||
static u08 RMC; | static u08 RMC; | ||
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=0; | ||
- | 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=0; | + | 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) | ||
{ | { | ||
- | if(commacount==2) //the latitude from the GGA | + | switch(commacount) |
- | { | + | { |
- | if(bufferindex< | + | case 3: //the latitude from the GGA |
- | { | + | |
+ | | ||
bufferindex++; | bufferindex++; | ||
- | } | + | |
- | else | + | |
- | { | + | |
if(!stage) | if(!stage) | ||
{ | { | ||
- | gps.latitude=(float)atoi(buffer); | + | gps.latitude=(float)atoi(buffer); |
+ | stage=TRUE; | ||
} | } | ||
- | if(stage==1) | + | else |
{ | { | ||
- | gps.latitude+=minutes*(float)atoi(buffer); | + | gps.latitude+=minutes*(float)atoi(buffer); |
} | } | ||
- | if(stage==2) | + | } |
- | { | + | break; |
- | gps.latitude+=0.01*minutes*(float)atoi(buffer); | + | case 4: |
- | } | + | |
- | memset(buffer,' | + | |
- | stage++; | + | gps.latitude=-gps.latitude; |
- | } | + | |
- | } | + | break; |
- | if(commacount==3 && | + | case 5: |
- | { | + | |
- | gps.latitude=-gps.latitude; | + | |
- | } | + | |
- | if(commacount==4) | + | |
- | { | + | |
- | if( (stage && | + | |
- | { | + | |
bufferindex++; | bufferindex++; | ||
- | } | + | |
- | else | + | |
- | { | + | |
if(!stage) | if(!stage) | ||
{ | { | ||
- | gps.longitude=(float)atoi(buffer); | + | gps.longitude=(float)atoi(buffer); |
+ | stage=TRUE; | ||
} | } | ||
- | if(stage==1) | + | else |
{ | { | ||
- | gps.longitude+=minutes*(float)atoi(buffer); | + | gps.longitude+=minutes*(float)atoi(buffer); |
} | } | ||
- | if(stage==2) | + | } |
- | { | + | break; |
- | gps.longitude+=0.01*minutes*(float)atoi(buffer); | + | case 6: |
- | } | + | |
- | memset(buffer,' | + | |
- | stage++; | + | gps.longitude=-gps.longitude; |
- | } | + | |
- | } | + | break; |
- | if(commacount==5 && | + | case 7: |
- | { | + | |
- | gps.longitude=-gps.longitude; | + | break; |
- | } | + | case 10: |
- | if(commacount==6) | + | |
- | { | + | |
- | gps.status=atoi(& | + | |
- | } | + | |
- | if(commacount==9) | + | |
- | { | + | |
- | if(!pointcount) // | + | |
- | { | + | |
bufferindex++; | bufferindex++; | ||
- | } | + | |
- | else | + | |
- | { | + | |
gps.altitude=(float)atoi(buffer)*0.1; | gps.altitude=(float)atoi(buffer)*0.1; | ||
- | memset(buffer,' | + | |
- | } | + | |
} | } | ||
} | } | ||
else if(RMC) | else if(RMC) | ||
{ | { | ||
- | if(commacount==7) //speed in knots | + | if(commacount==8) //speed in knots |
{ | { | ||
if(!pointcount) | if(!pointcount) | ||
Line 129: | 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 141: | Line 131: | ||
else | else | ||
{ | { | ||
- | gps.heading=(float)atoi(buffer); | + | 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 | + | else if(!commacount) // |
{ | { | ||
- | if(commacount==0) //the header | + | if(bufferindex< |
{ | { | ||
- | if(bufferindex< | + | bufferindex++; |
+ | } | ||
+ | else | ||
+ | { | ||
+ | if(buffer==" | ||
{ | { | ||
- | bufferindex++; //increase the position in the buffer | + | GGA=TRUE; |
} | } | ||
- | else | + | if(buffer==" |
{ | { | ||
- | if(buffer==" | + | RMC=TRUE; |
- | { | + | |
- | GGA=TRUE; | + | |
- | } | + | |
- | if(buffer==" | + | |
- | { | + | |
- | RMC=TRUE; | + | |
- | } | + | |
- | memset(buffer,' | + | |
} | } | ||
} | } | ||
- | | + | } |
} | } | ||
- | } | + | } |
</ | </ |
code/interrupt_driven_nmea.1208701813.txt.gz · Last modified: 2008/07/19 23:31 (external edit)