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:56] – 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) // | ISR(USART_RX_vect) // | ||
{ | { | ||
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 120: | Line 124: | ||
if(commacount==9) // | if(commacount==9) // | ||
{ | { | ||
- | + | ||
if(!pointcount) | if(!pointcount) | ||
{ | { | ||
Line 128: | Line 132: | ||
{ | { | ||
gps.heading=(float)atoi(buffer)*0.1; | gps.heading=(float)atoi(buffer)*0.1; | ||
- | gps.packetflag=TRUE; | + | toggle_pin; |
+ | if(!Gps.packetflag) // | ||
+ | { | ||
+ | Gps.packetflag=TRUE; | ||
+ | Gps=gps; | ||
+ | } | ||
} | } | ||
} | } | ||
Line 151: | Line 160: | ||
} | } | ||
} | } | ||
- | } | + | } |
</ | </ |
code/interrupt_driven_nmea.1208912171.txt.gz · Last modified: 2008/07/19 23:31 (external edit)