Subversion Repositories FlightCtrl

Rev

Rev 942 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 942 Rev 950
Line 141... Line 141...
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 == 11) 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
}