Update a README and a misnamed formal parameter.

This commit is contained in:
Gregory Nutt 2017-11-21 09:24:25 -06:00
parent 514ac3fe98
commit bcc61fed26
2 changed files with 8 additions and 7 deletions

View File

@ -539,7 +539,7 @@ Configuration Directories
STATUS:
2017-11-20: Basic graphics functionality appears to be functional, but
is not fully tested. There is not yet any support for input devices.
is not fully tested.
Only keyboard and mouse input are supported by pdcurses. NuttX
supports only USB HID keyboard and mouse. It would require a hub to
@ -553,9 +553,10 @@ Configuration Directories
In NuttX naming that is called a discrete joystick djoystick. There
is a well defined djoystick interface in include/nuttx/input/djoystick.h.
And I actually have a discrete joystick buttons on the Open1788 board so
I think that is where I should start.
Note that there are dscrete joystick buttons on the Open1788 board so
would be a natural interace in this case.
A discrete joystick driver was added to pdcurses configuration. It is
not yet integrated with pdcurses, however.
A discrete joystick driver was added to pdcurses configuration. It
has been verified that the pdcurses demos that require menu
interactions work well with the discrete joystick.

View File

@ -223,7 +223,7 @@ static void sendto_request(FAR struct net_driver_s *dev,
*
* Parameters:
* dev The structure of the network driver that caused the interrupt
* conn The received packet, cast to void *
* pvconn The received packet, cast to void *
* pvpriv An instance of struct icmpv6_sendto_s cast to void*
* flags Set of events describing why the callback was invoked
*
@ -236,7 +236,7 @@ static void sendto_request(FAR struct net_driver_s *dev,
****************************************************************************/
static uint16_t sendto_eventhandler(FAR struct net_driver_s *dev,
FAR void *conn,
FAR void *pvconn,
FAR void *pvpriv, uint16_t flags)
{
FAR struct icmpv6_sendto_s *pstate = (struct icmpv6_sendto_s *)pvpriv;