Subversion Repositories Projects

Compare Revisions

Ignore whitespace Rev 1771 → Rev 1772

/C-OSD/trunk/usart1.c
103,7 → 103,7
* transmit interrupt handler
* unused
*/
ISR(SIG_USART1_DATA) {
ISR(USART1_TXC_vect) {
}
 
/*
111,7 → 111,7
* portions taken and adapted from
* http://svn.mikrokopter.de/mikrowebsvn/filedetails.php?repname=FlightCtrl&path=%2Fbranches%2FV0.72p+Code+Redesign+killagreg%2Fuart0.c
*/
ISR(SIG_USART1_RECV) {
ISR(USART1_RXC_vect) {
uint8_t c;
// catch the received byte
c = UDR1;