Ver código fonte

changes function name keyboard_proc to keyboard_task

tmk 12 anos atrás
pai
commit
c845fd078c

+ 1 - 1
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();

+ 1 - 1
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();

+ 1 - 1
protocol/pjrc/main.c

@@ -86,6 +86,6 @@ int main(void)
 
     host_set_driver(pjrc_driver());
     while (1) {
-       keyboard_proc(); 
+       keyboard_task(); 
     }
 }

+ 1 - 1
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();
         }