removed USART test from ISR

This commit is contained in:
bigalex 2012-08-07 20:08:57 +02:00
parent 65ea2847dd
commit a5c2cfebea

View File

@ -85,7 +85,13 @@ int main(void)
/* here the show begins:*/ /* here the show begins:*/
sei(); sei();
for(;;) /* ever */ ; for(;;) /* ever */ {
//do something
USART0_put_uint16(0x2342);
USART0_crlf();
};
/* never */ return 0; /* never */ return 0;
} }
@ -95,7 +101,5 @@ ISR(TIMER0_COMPA_vect)
{ {
/* calculate next analog sample value in synth mixer:*/ /* calculate next analog sample value in synth mixer:*/
OCR1B = synth_mix(); OCR1B = synth_mix();
USART0_put_uint16(0x1234);
USART0_crlf();
} }