]> git.donarmstrong.com Git - tmk_firmware.git/commitdiff
FIX: include files
authortmk <nobody@nowhere>
Mon, 25 Oct 2010 07:56:24 +0000 (16:56 +0900)
committertmk <nobody@nowhere>
Mon, 25 Oct 2010 07:56:24 +0000 (16:56 +0900)
hhkb/matrix.c
key_process.c
matrix_skel.h

index a425439ccab0887184096f8aa8f5a4c001849e19..a640655602213ed1a2108c14f1ad24ed7df16207 100644 (file)
@@ -3,7 +3,6 @@
  */
 #include <avr/io.h>
 #include <util/delay.h>
-#include "keymap.h"
 #include "matrix.h"
 #include "print.h"
 
index 10cac032b145da8a81676fa3d3bd96a8103d6c59..5445a4a243f5387d4892539c15427e9e47e57731 100644 (file)
@@ -8,9 +8,9 @@
 #include "usb_keyboard.h"
 #include "usb_mouse.h"
 #include "print.h"
-#include "matrix_skel.h"
-#include "keymap.h"
 #include "jump_bootloader.h"
+#include "matrix_skel.h"
+#include "keymap_skel.h"
 
 #include "key_process.h"
 
index 0d483034db1ea239769cf4710d8a5d8f1041a8fa..3086bded743efbc04a38414951295f1cd84e6d95 100644 (file)
@@ -17,6 +17,8 @@ bool matrix_is_modified(void);
 bool matrix_has_ghost(void);
 /* matrix state on row */
 uint16_t matrix_get_row(int row);
+/* count keys pressed */
+int matrix_key_count(void);
 /* print matrix for debug */
 void matrix_print(void);