]> git.friedersdorff.com Git - max/tmk_keyboard.git/commitdiff
Make bootmagic.c code portable (_delay_ms -> wait_ms).
authorflabbergast <s3+flabbergast@sdfeu.org>
Mon, 12 Oct 2015 08:40:06 +0000 (09:40 +0100)
committerflabbergast <s3+flabbergast@sdfeu.org>
Mon, 12 Oct 2015 08:40:06 +0000 (09:40 +0100)
tmk_core/common/bootmagic.c

index d6684b2d57405c24c116a00f38538aecf28a8cbe..698693cbd97577f183e6f08e0d8813516ae08305 100644 (file)
@@ -1,6 +1,6 @@
 #include <stdint.h>
 #include <stdbool.h>
-#include <util/delay.h>
+#include "wait.h"
 #include "matrix.h"
 #include "bootloader.h"
 #include "debug.h"
@@ -21,7 +21,7 @@ void bootmagic(void)
     /* do scans in case of bounce */
     print("bootmagic scan: ... ");
     uint8_t scan = 100;
-    while (scan--) { matrix_scan(); _delay_ms(10); }
+    while (scan--) { matrix_scan(); wait_ms(10); }
     print("done.\n");
 
     /* bootmagic skip */