Subversion Repositories Projects

Compare Revisions

Ignore whitespace Rev 799 → Rev 800

/C-OSD/trunk/usart0.c
18,15 → 18,15
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
****************************************************************************/
 
#include "main.h"
#include <avr/io.h>
#include <avr/interrupt.h>
#include <util/delay.h>
#include "main.h"
#include "usart0.h"
 
#ifdef ANTENNATRACKTEST
 
 
#ifdef ANTENNATRACKTEST
 
 
#if !(ALLCHARSDEBUG|(WRITECHARS != -1))
 
 
91,14 → 91,14
ISR(SIG_USART0_RECV) {
uint8_t c;
// catch the received byte
c = UDR0;
 
c = UDR0;
 
// echo
UDR0 = c;
}
UDR0 = c;
}
 
 
 
#endif
 
#endif
 
#endif // ANTENNATRACKTEST