Subversion Repositories FlightCtrl

Rev

Rev 950 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 950 Rev 957
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
        #if defined (USE_KILLAGREG) || defined (USE_MK3MAG)
145
        #if (defined (USE_KILLAGREG) || defined (USE_MK3MAG))
146
        if (BoardRelease > 10) ubx_parser(c); // and put it into the ubx protocol parser
146
        if (BoardRelease > 10) ubx_parser(c); // and put it into the ubx protocol parser
147
        #endif
147
        #endif
148
}
148
}