this platform is too slow to get an error?
authorDarron Broad <darron@kewl.org>
Mon, 23 Mar 2015 04:55:33 +0000
changeset 86 6dd410d5a20f
parent 85 51c8603cc8cc
child 87 6ed6a87ffc65
this platform is too slow to get an error?

anyhow, do it like STM32 where errors can occur when we
are too fast and probably lacking signal integrity
io.c
--- a/io.c	Sun Mar 22 20:34:21 2015 +0000
+++ b/io.c	Mon Mar 23 04:55:33 2015 +0000
@@ -31,11 +31,11 @@
 	led_clear();
 	while (true) {
 		i = 0;
-		while (++i < 5) {
+		while (++i < 10) {
 			led_toggle();
 			_delay_ms(50);
 		}
-		_delay_ms(500);
+		_delay_ms(1500);
 	}
 }