Rev 903 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 903 | Rev 909 | ||
---|---|---|---|
Line 140... | Line 140... | ||
140 | /****************************************************************/ |
140 | /****************************************************************/ |
141 | ISR(USART1_RX_vect) |
141 | ISR(USART1_RX_vect) |
142 | { |
142 | { |
143 | uint8_t c; |
143 | uint8_t c; |
144 | c = UDR1; // get data byte |
144 | c = UDR1; // get data byte |
145 | #ifdef USE_KILLAGREG |
145 | #if defined (USE_KILLAGREG) || defined (USE_MK3MAG) |
146 | if (BoardRelease == 11) ubx_parser(c); // and put it into the ubx protocol parser |
146 | if (BoardRelease == 11) ubx_parser(c); // and put it into the ubx protocol parser |
147 | #endif |
147 | #endif |
148 | } |
148 | } |