From 62cb2f3c06967191444b415964ceca1765d3971c Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Fri, 28 Nov 2014 15:56:18 -0600 Subject: [PATCH] Fixes to get the discrete joystick driver and test working --- examples/djoystick/djoy_main.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/examples/djoystick/djoy_main.c b/examples/djoystick/djoy_main.c index ee4b83e85..7a7a74d51 100644 --- a/examples/djoystick/djoy_main.c +++ b/examples/djoystick/djoy_main.c @@ -152,6 +152,10 @@ int djoy_main(int argc, char *argv[]) int ret; int err = EXIT_FAILURE; + /* Reset some globals that might been been left in a bad state */ + + g_djoylast = 0; + /* Open the djoystick device */ fd = open(CONFIG_EXAMPLES_DJOYSTICK_DEVNAME, O_RDONLY);