not sure why this was done tbh
author"Darron Broad" <darron@kewl.org>
Sun, 15 Jan 2017 16:20:48 +0000
changeset 54 9cef4d4d576f
parent 53 9ed828b66d92
child 55 1a400b220b15
not sure why this was done tbh
STM8S103F3P6/blinky.c
--- a/STM8S103F3P6/blinky.c	Fri Feb 19 01:37:52 2016 +0000
+++ b/STM8S103F3P6/blinky.c	Sun Jan 15 16:20:48 2017 +0000
@@ -38,10 +38,10 @@
 	PB_CR1 = (1 << LED);
 
 	while (true) {
-		for (i = 0; i < 125000; ++i) {
+		for (i = 0; i < 250000; ++i) {
 			PB_ODR ^= (1 << LED);	/* TOGGLE */
 		}
-		for (i = 0; i < 125000; ++i) {
+		for (i = 0; i < 250000; ++i) {
 			PB_ODR = (1 << LED);	/* OFF */
 		}
 	}