From 8eb95ca39c0dfc2829782241fd55de04812f5e98 Mon Sep 17 00:00:00 2001 From: Michael Ossmann Date: Fri, 22 Feb 2013 18:41:46 -0700 Subject: [PATCH] induce fewer seizures --- firmware/spiflash/spiflash.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/firmware/spiflash/spiflash.c b/firmware/spiflash/spiflash.c index e0724adc..0e8546e4 100644 --- a/firmware/spiflash/spiflash.c +++ b/firmware/spiflash/spiflash.c @@ -48,10 +48,10 @@ int main(void) while (1) { gpio_set(PORT_LED1_3, (PIN_LED1|PIN_LED3)); /* LEDs on */ - for (i = 0; i < 2000000; i++) /* Wait a bit. */ + for (i = 0; i < 8000000; i++) /* Wait a bit. */ __asm__("nop"); gpio_clear(PORT_LED1_3, (PIN_LED1|PIN_LED3)); /* LED off */ - for (i = 0; i < 2000000; i++) /* Wait a bit. */ + for (i = 0; i < 8000000; i++) /* Wait a bit. */ __asm__("nop"); }