This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

making lpc2478 board to recognize a usb keyboard

Hi all, I made a custom board using lpc2478 and made my pendrive to detect by using usbhostlite. Now I want to do something like this, if i plug a usb keyboard or mouse it should be detected by my lpc2478 board. If I am not wrong, my lpc2478 usb should act as host for this. I ve been browsing the keil forums and examples and discussions were given for recognizing the board as hid on pc.Is there any reference project or example available for recognizing the keyboard by a lpc2478 board.? If not, can you give some pointers for doing the programming?Thank you.

Parents
  • UsbHostLite is designed for simple operations on LPC series running without an OS.

    It has a lot of limitations expressed here:

    ics.nxp.com/.../
    Classes other than the mass storage are not supported.
    The mass storage interface must be present in the first configuration.
    Max Logical Unit Number (LUN) greater than zero not supported.
    File systems other than FAT16 are not supported.
    Long filenames are not supported.
    Files located in folders other than root directory cannot be accesed.
    The buffer size used in the application must not exceed 4KB.

    ics.nxp.com/.../an10703.pdf

    Try to adapt an OS either commercial or from the free-ones for the specific device.
    Another option is to write the add-on software for the HID devices in question.

Reply
  • UsbHostLite is designed for simple operations on LPC series running without an OS.

    It has a lot of limitations expressed here:

    ics.nxp.com/.../
    Classes other than the mass storage are not supported.
    The mass storage interface must be present in the first configuration.
    Max Logical Unit Number (LUN) greater than zero not supported.
    File systems other than FAT16 are not supported.
    Long filenames are not supported.
    Files located in folders other than root directory cannot be accesed.
    The buffer size used in the application must not exceed 4KB.

    ics.nxp.com/.../an10703.pdf

    Try to adapt an OS either commercial or from the free-ones for the specific device.
    Another option is to write the add-on software for the HID devices in question.

Children