diff --git a/configs/open1788/README.txt b/configs/open1788/README.txt index 3ccc8aeaad0..ca757866756 100644 --- a/configs/open1788/README.txt +++ b/configs/open1788/README.txt @@ -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. diff --git a/net/icmpv6/icmpv6_sendto.c b/net/icmpv6/icmpv6_sendto.c index bd876e86de7..cbff44a3ea7 100644 --- a/net/icmpv6/icmpv6_sendto.c +++ b/net/icmpv6/icmpv6_sendto.c @@ -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;