mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-09 06:25:16 +00:00
Implement encoding the usbhost HID keyboard driver; configre olimex-lpc1766stk HID keyboard configuration to use the kconfig-frontends tool
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5461 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
parent
e2bf277b80
commit
c8fc3b9c48
1 changed files with 2 additions and 2 deletions
|
|
@ -206,7 +206,7 @@ int hidkbd_main(int argc, char *argv[])
|
|||
printf("Device %s opened\n", CONFIG_EXAMPLES_HIDKBD_DEVNAME);
|
||||
fflush(stdout);
|
||||
|
||||
/* Loop until there is a read failure */
|
||||
/* Loop until there is a read failure (or EOF?) */
|
||||
|
||||
do
|
||||
{
|
||||
|
|
@ -220,7 +220,7 @@ int hidkbd_main(int argc, char *argv[])
|
|||
(void)write(1, buffer, nbytes);
|
||||
}
|
||||
}
|
||||
while (nbytes >= 0);
|
||||
while (nbytes > 0);
|
||||
|
||||
printf("Closing device %s: %d\n", CONFIG_EXAMPLES_HIDKBD_DEVNAME, (int)nbytes);
|
||||
fflush(stdout);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue