]> git.donarmstrong.com Git - tmk_firmware.git/commitdiff
changes function name keyboard_proc to keyboard_task
authortmk <nobody@nowhere>
Sun, 7 Oct 2012 02:09:40 +0000 (11:09 +0900)
committertmk <nobody@nowhere>
Wed, 17 Oct 2012 06:55:37 +0000 (15:55 +0900)
converter/usb_usb/main.cpp
protocol/iwrap/main.c
protocol/pjrc/main.c
protocol/vusb/main.c

index 04d838f57f1e74770a96dba15c8e7b2ad3077210..46c728e9b56318744f5a72c4550c9541d97dbc81 100644 (file)
@@ -88,7 +88,7 @@ uint16_t timer;
 DDRF = (1<<7);
     for (;;) {
 PORTF ^= (1<<7);
-        keyboard_proc();
+        keyboard_task();
 
 timer = timer_read();
         usb_host.Task();
index a552afb67ed0a027da50eca8667dc3b19121d3aa..5c42a2c6add6590d5dcf6960ba4afd4c449653a1 100644 (file)
@@ -166,7 +166,7 @@ int main(void)
         if (host_get_driver() == vusb_driver())
             usbPoll();
 #endif
-        keyboard_proc();
+        keyboard_task();
 #ifdef HOST_VUSB
         if (host_get_driver() == vusb_driver())
             vusb_transfer_keyboard();
index 0b0a44028e9f57a5f9a1d1840344aaa4e99c4ebf..e0f600fe7c66f77faf40c47484151e4166d48224 100644 (file)
@@ -86,6 +86,6 @@ int main(void)
 
     host_set_driver(pjrc_driver());
     while (1) {
-       keyboard_proc(); 
+       keyboard_task(); 
     }
 }
index 3deb82238ac25ea486879e58fd04e5b1e664729d..e964a69a878768169f9ca3642d5ce8ccd55d4c9f 100644 (file)
@@ -96,7 +96,7 @@ int main(void)
             // TODO: configuration process is incosistent. it sometime fails.
             // To prevent failing to configure NOT scan keyboard during configuration
             if (usbConfiguration && usbInterruptIsReady()) {
-                keyboard_proc();
+                keyboard_task();
             }
             vusb_transfer_keyboard();
         }