From d670c605a103641fd73c08d823d511f9c98f576c Mon Sep 17 00:00:00 2001 From: XANTRONIX Development Date: Sun, 5 Jun 2016 00:33:10 -0500 Subject: [PATCH] =?UTF-8?q?As=20it=20turns=20out,=20not=20putting=20244?= =?UTF-8?q?=C2=B5s=20between=20packets=20makes=20things=20unreliable=20som?= =?UTF-8?q?etimes;=20Nintendo=20was=20really=20saying=20that=20the=20inter?= =?UTF-8?q?val=20between=20the=20start=20of=20two=20packets=20should=20be?= =?UTF-8?q?=20>=3D270=C2=B5s,=20not=20that=20there=20should=20be=20a=20per?= =?UTF-8?q?iod=20of=20silence=20that=20long?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- avr/send.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/avr/send.c b/avr/send.c index c0dac07..47b2eaa 100644 --- a/avr/send.c +++ b/avr/send.c @@ -101,8 +101,6 @@ static void spi_send_packet() { response.device = spi_send_byte(0); response.status = spi_send_byte(0); - - _delay_us(244); } int main() {