From c845fd078c8a8e38e66f625f669a34aa2400d63b Mon Sep 17 00:00:00 2001
From: tmk <nobody@nowhere>
Date: Sun, 7 Oct 2012 11:09:40 +0900
Subject: [PATCH] changes function name keyboard_proc to keyboard_task

---
 converter/usb_usb/main.cpp | 2 +-
 protocol/iwrap/main.c      | 2 +-
 protocol/pjrc/main.c       | 2 +-
 protocol/vusb/main.c       | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/converter/usb_usb/main.cpp b/converter/usb_usb/main.cpp
index 04d838f57f..46c728e9b5 100644
--- a/converter/usb_usb/main.cpp
+++ b/converter/usb_usb/main.cpp
@@ -88,7 +88,7 @@ uint16_t timer;
 DDRF = (1<<7);
     for (;;) {
 PORTF ^= (1<<7);
-        keyboard_proc();
+        keyboard_task();
 
 timer = timer_read();
         usb_host.Task();
diff --git a/protocol/iwrap/main.c b/protocol/iwrap/main.c
index a552afb67e..5c42a2c6ad 100644
--- a/protocol/iwrap/main.c
+++ b/protocol/iwrap/main.c
@@ -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();
diff --git a/protocol/pjrc/main.c b/protocol/pjrc/main.c
index 0b0a44028e..e0f600fe7c 100644
--- a/protocol/pjrc/main.c
+++ b/protocol/pjrc/main.c
@@ -86,6 +86,6 @@ int main(void)
 
     host_set_driver(pjrc_driver());
     while (1) {
-       keyboard_proc(); 
+       keyboard_task(); 
     }
 }
diff --git a/protocol/vusb/main.c b/protocol/vusb/main.c
index 3deb82238a..e964a69a87 100644
--- a/protocol/vusb/main.c
+++ b/protocol/vusb/main.c
@@ -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();
         }