From c867aeee782acbaea0051232d99f6cab06553770 Mon Sep 17 00:00:00 2001 From: XANTRONIX Development Date: Mon, 30 May 2016 22:27:58 -0500 Subject: [PATCH] Gotta shift that in before the deadline, yo --- avr/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/avr/main.c b/avr/main.c index e4caa63..814fbad 100644 --- a/avr/main.c +++ b/avr/main.c @@ -66,11 +66,11 @@ ISR(TIMER0_COMPB_vect) { * SPI byte receipt interrupt vector */ ISR(SPI_STC_vect) { - uart_putchar(SPDR, NULL); - if (buffer.cur < buffer.read) { SPDR = buffer.data[buffer.cur++]; } + + uart_putchar(SPDR, NULL); } static void setup_clock_internal(tabby_clock_speed speed) {