diff options
| author | tmk <nobody@nowhere> | 2012-10-07 11:09:40 +0900 |
|---|---|---|
| committer | tmk <nobody@nowhere> | 2012-10-17 15:55:37 +0900 |
| commit | c845fd078c8a8e38e66f625f669a34aa2400d63b (patch) | |
| tree | e488de14e3056ff2996c3359e82e3278c0a9ce18 | |
| parent | 4ae979f6ef8dbf9e1d1f35be15322ad6d02e2958 (diff) | |
| download | qmk_firmware-c845fd078c8a8e38e66f625f669a34aa2400d63b.tar.gz qmk_firmware-c845fd078c8a8e38e66f625f669a34aa2400d63b.zip | |
changes function name keyboard_proc to keyboard_task
| -rw-r--r-- | converter/usb_usb/main.cpp | 2 | ||||
| -rw-r--r-- | protocol/iwrap/main.c | 2 | ||||
| -rw-r--r-- | protocol/pjrc/main.c | 2 | ||||
| -rw-r--r-- | 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 04d838f57..46c728e9b 100644 --- a/converter/usb_usb/main.cpp +++ b/converter/usb_usb/main.cpp | |||
| @@ -88,7 +88,7 @@ uint16_t timer; | |||
| 88 | DDRF = (1<<7); | 88 | DDRF = (1<<7); |
| 89 | for (;;) { | 89 | for (;;) { |
| 90 | PORTF ^= (1<<7); | 90 | PORTF ^= (1<<7); |
| 91 | keyboard_proc(); | 91 | keyboard_task(); |
| 92 | 92 | ||
| 93 | timer = timer_read(); | 93 | timer = timer_read(); |
| 94 | usb_host.Task(); | 94 | usb_host.Task(); |
diff --git a/protocol/iwrap/main.c b/protocol/iwrap/main.c index a552afb67..5c42a2c6a 100644 --- a/protocol/iwrap/main.c +++ b/protocol/iwrap/main.c | |||
| @@ -166,7 +166,7 @@ int main(void) | |||
| 166 | if (host_get_driver() == vusb_driver()) | 166 | if (host_get_driver() == vusb_driver()) |
| 167 | usbPoll(); | 167 | usbPoll(); |
| 168 | #endif | 168 | #endif |
| 169 | keyboard_proc(); | 169 | keyboard_task(); |
| 170 | #ifdef HOST_VUSB | 170 | #ifdef HOST_VUSB |
| 171 | if (host_get_driver() == vusb_driver()) | 171 | if (host_get_driver() == vusb_driver()) |
| 172 | vusb_transfer_keyboard(); | 172 | vusb_transfer_keyboard(); |
diff --git a/protocol/pjrc/main.c b/protocol/pjrc/main.c index 0b0a44028..e0f600fe7 100644 --- a/protocol/pjrc/main.c +++ b/protocol/pjrc/main.c | |||
| @@ -86,6 +86,6 @@ int main(void) | |||
| 86 | 86 | ||
| 87 | host_set_driver(pjrc_driver()); | 87 | host_set_driver(pjrc_driver()); |
| 88 | while (1) { | 88 | while (1) { |
| 89 | keyboard_proc(); | 89 | keyboard_task(); |
| 90 | } | 90 | } |
| 91 | } | 91 | } |
diff --git a/protocol/vusb/main.c b/protocol/vusb/main.c index 3deb82238..e964a69a8 100644 --- a/protocol/vusb/main.c +++ b/protocol/vusb/main.c | |||
| @@ -96,7 +96,7 @@ int main(void) | |||
| 96 | // TODO: configuration process is incosistent. it sometime fails. | 96 | // TODO: configuration process is incosistent. it sometime fails. |
| 97 | // To prevent failing to configure NOT scan keyboard during configuration | 97 | // To prevent failing to configure NOT scan keyboard during configuration |
| 98 | if (usbConfiguration && usbInterruptIsReady()) { | 98 | if (usbConfiguration && usbInterruptIsReady()) { |
| 99 | keyboard_proc(); | 99 | keyboard_task(); |
| 100 | } | 100 | } |
| 101 | vusb_transfer_keyboard(); | 101 | vusb_transfer_keyboard(); |
| 102 | } | 102 | } |
