2016-03-10 18:21:35 +01:00
|
|
|
/****************************************************************************
|
2019-08-19 17:16:08 +02:00
|
|
|
* boards/arm/stm32l4/nucleo-l476rg/src/stm32_ajoystick.c
|
2016-03-10 18:21:35 +01:00
|
|
|
*
|
2021-03-19 12:39:00 +01:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
2016-03-10 18:21:35 +01:00
|
|
|
*
|
2021-03-19 12:39:00 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2016-03-10 18:21:35 +01:00
|
|
|
*
|
2021-03-19 12:39:00 +01:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2016-03-10 18:21:35 +01:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <debug.h>
|
|
|
|
|
|
|
|
#include <nuttx/arch.h>
|
2016-05-26 17:41:50 +02:00
|
|
|
#include <nuttx/fs/fs.h>
|
2016-03-10 18:21:35 +01:00
|
|
|
#include <nuttx/input/ajoystick.h>
|
|
|
|
|
|
|
|
#include "stm32l4_gpio.h"
|
|
|
|
#include "stm32l4_adc.h"
|
2019-05-25 02:06:01 +02:00
|
|
|
#include "hardware/stm32l4_adc.h"
|
2016-03-10 18:21:35 +01:00
|
|
|
#include "nucleo-l476rg.h"
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Pre-processor Definitions
|
|
|
|
****************************************************************************/
|
2019-08-19 17:16:08 +02:00
|
|
|
|
2016-03-10 18:21:35 +01:00
|
|
|
/* Check for pre-requisites and pin conflicts */
|
|
|
|
|
2021-04-08 11:33:58 +02:00
|
|
|
#ifdef CONFIG_INPUT_AJOYSTICK
|
2016-03-10 18:21:35 +01:00
|
|
|
# if !defined(CONFIG_ADC)
|
|
|
|
# error CONFIG_ADC is required for the Itead joystick
|
2021-04-08 11:33:58 +02:00
|
|
|
# undef CONFIG_INPUT_AJOYSTICK
|
2017-08-30 10:40:58 +02:00
|
|
|
# elif !defined(CONFIG_STM32L4_ADC1)
|
|
|
|
# error CONFIG_STM32L4_ADC1 is required for Itead joystick
|
2021-04-08 11:33:58 +02:00
|
|
|
# undef CONFIG_INPUT_AJOYSTICK
|
2016-03-10 18:21:35 +01:00
|
|
|
# endif
|
2021-04-08 11:33:58 +02:00
|
|
|
#endif /* CONFIG_INPUT_AJOYSTICK */
|
2016-03-10 18:21:35 +01:00
|
|
|
|
2021-04-08 11:33:58 +02:00
|
|
|
#ifdef CONFIG_INPUT_AJOYSTICK
|
2016-03-10 18:21:35 +01:00
|
|
|
|
|
|
|
/* A no-ADC, buttons only version can be built for testing */
|
|
|
|
|
|
|
|
#undef NO_JOYSTICK_ADC
|
|
|
|
|
|
|
|
/* Maximum number of ADC channels */
|
|
|
|
|
|
|
|
#define MAX_ADC_CHANNELS 8
|
|
|
|
|
|
|
|
/* Dual channel ADC support requires DMA */
|
|
|
|
|
|
|
|
#ifdef CONFIG_ADC_DMA
|
|
|
|
# define NJOYSTICK_CHANNELS 2
|
|
|
|
#else
|
|
|
|
# define NJOYSTICK_CHANNELS 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_NUCLEO_F401RE_AJOY_MINBUTTONS
|
|
|
|
/* Number of Joystick buttons */
|
|
|
|
|
|
|
|
# define AJOY_NGPIOS 3
|
|
|
|
|
|
|
|
/* Bitset of supported Joystick buttons */
|
|
|
|
|
|
|
|
# define AJOY_SUPPORTED (AJOY_BUTTON_1_BIT | AJOY_BUTTON_2_BIT | \
|
|
|
|
AJOY_BUTTON_3_BIT)
|
|
|
|
#else
|
|
|
|
/* Number of Joystick buttons */
|
|
|
|
|
|
|
|
# define AJOY_NGPIOS 7
|
|
|
|
|
|
|
|
/* Bitset of supported Joystick buttons */
|
|
|
|
|
|
|
|
# define AJOY_SUPPORTED (AJOY_BUTTON_1_BIT | AJOY_BUTTON_2_BIT | \
|
|
|
|
AJOY_BUTTON_3_BIT | AJOY_BUTTON_4_BIT | \
|
|
|
|
AJOY_BUTTON_5_BIT | AJOY_BUTTON_6_BIT | \
|
|
|
|
AJOY_BUTTON_7_BIT )
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Function Prototypes
|
|
|
|
****************************************************************************/
|
|
|
|
|
2021-03-20 13:01:22 +01:00
|
|
|
static ajoy_buttonset_t
|
|
|
|
ajoy_supported(FAR const struct ajoy_lowerhalf_s *lower);
|
2016-03-10 18:21:35 +01:00
|
|
|
static int ajoy_sample(FAR const struct ajoy_lowerhalf_s *lower,
|
|
|
|
FAR struct ajoy_sample_s *sample);
|
2021-03-20 13:01:22 +01:00
|
|
|
static ajoy_buttonset_t
|
|
|
|
ajoy_buttons(FAR const struct ajoy_lowerhalf_s *lower);
|
2016-03-10 18:21:35 +01:00
|
|
|
static void ajoy_enable(FAR const struct ajoy_lowerhalf_s *lower,
|
|
|
|
ajoy_buttonset_t press, ajoy_buttonset_t release,
|
|
|
|
ajoy_handler_t handler, FAR void *arg);
|
|
|
|
|
|
|
|
static void ajoy_disable(void);
|
2017-02-27 13:27:56 +01:00
|
|
|
static int ajoy_interrupt(int irq, FAR void *context, FAR void *arg);
|
2016-03-10 18:21:35 +01:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Data
|
|
|
|
****************************************************************************/
|
2019-08-19 17:16:08 +02:00
|
|
|
|
2016-03-10 18:21:35 +01:00
|
|
|
/* Pin configuration for each Itead joystick button. Index using AJOY_*
|
|
|
|
* button definitions in include/nuttx/input/ajoystick.h.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef CONFIG_NUCLEO_F401RE_AJOY_MINBUTTONS
|
|
|
|
static const uint32_t g_joygpio[AJOY_NGPIOS] =
|
|
|
|
{
|
|
|
|
GPIO_BUTTON_1, GPIO_BUTTON_2, GPIO_BUTTON_3
|
|
|
|
};
|
|
|
|
#else
|
|
|
|
static const uint32_t g_joygpio[AJOY_NGPIOS] =
|
|
|
|
{
|
|
|
|
GPIO_BUTTON_1, GPIO_BUTTON_2, GPIO_BUTTON_3, GPIO_BUTTON_4,
|
|
|
|
GPIO_BUTTON_5, GPIO_BUTTON_6, GPIO_BUTTON_7
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* This is the button joystick lower half driver interface */
|
|
|
|
|
|
|
|
static const struct ajoy_lowerhalf_s g_ajoylower =
|
|
|
|
{
|
|
|
|
.al_supported = ajoy_supported,
|
|
|
|
.al_sample = ajoy_sample,
|
|
|
|
.al_buttons = ajoy_buttons,
|
|
|
|
.al_enable = ajoy_enable,
|
|
|
|
};
|
|
|
|
|
|
|
|
#ifndef NO_JOYSTICK_ADC
|
2016-05-26 17:41:50 +02:00
|
|
|
/* Thread-independent file structure for the open ADC driver */
|
2016-03-10 18:21:35 +01:00
|
|
|
|
2016-05-26 17:41:50 +02:00
|
|
|
static struct file g_adcfile;
|
2016-03-10 18:21:35 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Current interrupt handler and argument */
|
|
|
|
|
|
|
|
static ajoy_handler_t g_ajoyhandler;
|
|
|
|
static FAR void *g_ajoyarg;
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: ajoy_supported
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Return the set of buttons supported on the button joystick device
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2021-03-20 13:01:22 +01:00
|
|
|
static ajoy_buttonset_t
|
|
|
|
ajoy_supported(FAR const struct ajoy_lowerhalf_s *lower)
|
2016-03-10 18:21:35 +01:00
|
|
|
{
|
2016-06-11 19:59:51 +02:00
|
|
|
iinfo("Supported: %02x\n", AJOY_SUPPORTED);
|
2016-03-10 18:21:35 +01:00
|
|
|
return (ajoy_buttonset_t)AJOY_SUPPORTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: ajoy_sample
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Return the current state of all button joystick buttons
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static int ajoy_sample(FAR const struct ajoy_lowerhalf_s *lower,
|
|
|
|
FAR struct ajoy_sample_s *sample)
|
|
|
|
{
|
|
|
|
#ifndef NO_JOYSTICK_ADC
|
|
|
|
struct adc_msg_s adcmsg[MAX_ADC_CHANNELS];
|
|
|
|
FAR struct adc_msg_s *ptr;
|
|
|
|
ssize_t nread;
|
|
|
|
ssize_t offset;
|
|
|
|
int have;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* Read all of the available samples (handling the case where additional
|
|
|
|
* channels are enabled).
|
|
|
|
*/
|
|
|
|
|
2016-07-05 20:12:44 +02:00
|
|
|
nread = file_read(&g_adcfile, adcmsg,
|
|
|
|
MAX_ADC_CHANNELS * sizeof(struct adc_msg_s));
|
2016-03-10 18:21:35 +01:00
|
|
|
if (nread < 0)
|
|
|
|
{
|
2017-09-28 22:14:32 +02:00
|
|
|
if (nread != -EINTR)
|
2016-03-10 18:21:35 +01:00
|
|
|
{
|
2017-09-28 22:14:32 +02:00
|
|
|
ierr("ERROR: read failed: %d\n", (int)nread);
|
2016-03-10 18:21:35 +01:00
|
|
|
}
|
|
|
|
|
2017-09-28 22:14:32 +02:00
|
|
|
return nread;
|
2016-03-10 18:21:35 +01:00
|
|
|
}
|
|
|
|
else if (nread < NJOYSTICK_CHANNELS * sizeof(struct adc_msg_s))
|
|
|
|
{
|
2016-06-11 23:50:49 +02:00
|
|
|
ierr("ERROR: read too small: %ld\n", (long)nread);
|
2016-03-10 18:21:35 +01:00
|
|
|
return -EIO;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Sample and the raw analog inputs */
|
|
|
|
|
|
|
|
#ifdef CONFIG_ADC_DMA
|
|
|
|
have = 0;
|
|
|
|
|
|
|
|
#else
|
|
|
|
/* If DMA is not supported, then we will have only a single ADC channel */
|
|
|
|
|
|
|
|
have = 2;
|
|
|
|
sample->as_y = 0;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
for (i = 0, offset = 0;
|
|
|
|
i < MAX_ADC_CHANNELS && offset < nread && have != 3;
|
|
|
|
i++, offset += sizeof(struct adc_msg_s))
|
|
|
|
{
|
|
|
|
ptr = &adcmsg[i];
|
|
|
|
|
|
|
|
/* Is this one of the channels that we need? */
|
|
|
|
|
|
|
|
if ((have & 1) == 0 && ptr->am_channel == 0)
|
|
|
|
{
|
|
|
|
int32_t tmp = ptr->am_data;
|
|
|
|
sample->as_x = (int16_t)tmp;
|
|
|
|
have |= 1;
|
|
|
|
|
2016-06-11 19:59:51 +02:00
|
|
|
iinfo("X sample: %ld -> %d\n", (long)tmp, (int)sample->as_x);
|
2016-03-10 18:21:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef CONFIG_ADC_DMA
|
|
|
|
if ((have & 2) == 0 && ptr->am_channel == 1)
|
|
|
|
{
|
|
|
|
int32_t tmp = ptr->am_data;
|
|
|
|
sample->as_y = (int16_t)tmp;
|
|
|
|
have |= 2;
|
|
|
|
|
2016-06-11 19:59:51 +02:00
|
|
|
iinfo("Y sample: %ld -> %d\n", (long)tmp, (int)sample->as_y);
|
2016-03-10 18:21:35 +01:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
if (have != 3)
|
|
|
|
{
|
2016-06-11 23:50:49 +02:00
|
|
|
ierr("ERROR: Could not find joystick channels\n");
|
2016-03-10 18:21:35 +01:00
|
|
|
return -EIO;
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
/* ADC support is disabled */
|
|
|
|
|
|
|
|
sample->as_x = 0;
|
|
|
|
sample->as_y = 0;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Sample the discrete button inputs */
|
|
|
|
|
|
|
|
sample->as_buttons = ajoy_buttons(lower);
|
2016-06-11 19:59:51 +02:00
|
|
|
iinfo("Returning: %02x\n", sample->as_buttons);
|
2016-03-10 18:21:35 +01:00
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: ajoy_buttons
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Return the current state of button data (only)
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2021-03-20 13:01:22 +01:00
|
|
|
static ajoy_buttonset_t
|
|
|
|
ajoy_buttons(FAR const struct ajoy_lowerhalf_s *lower)
|
2016-03-10 18:21:35 +01:00
|
|
|
{
|
|
|
|
ajoy_buttonset_t ret = 0;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* Read each joystick GPIO value */
|
|
|
|
|
|
|
|
for (i = 0; i < AJOY_NGPIOS; i++)
|
|
|
|
{
|
|
|
|
/* Button outputs are pulled high. So a sensed low level means that the
|
|
|
|
* button is pressed.
|
|
|
|
*/
|
|
|
|
|
2017-08-30 10:40:58 +02:00
|
|
|
if (!stm32l4_gpioread(g_joygpio[i]))
|
2016-03-10 18:21:35 +01:00
|
|
|
{
|
|
|
|
ret |= (1 << i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-11 19:59:51 +02:00
|
|
|
iinfo("Returning: %02x\n", ret);
|
2016-03-10 18:21:35 +01:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: ajoy_enable
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Enable interrupts on the selected set of joystick buttons. And empty
|
|
|
|
* set will disable all interrupts.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static void ajoy_enable(FAR const struct ajoy_lowerhalf_s *lower,
|
|
|
|
ajoy_buttonset_t press, ajoy_buttonset_t release,
|
|
|
|
ajoy_handler_t handler, FAR void *arg)
|
|
|
|
{
|
|
|
|
irqstate_t flags;
|
|
|
|
ajoy_buttonset_t either = press | release;
|
|
|
|
ajoy_buttonset_t bit;
|
|
|
|
bool rising;
|
|
|
|
bool falling;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* Start with all interrupts disabled */
|
|
|
|
|
|
|
|
flags = enter_critical_section();
|
|
|
|
ajoy_disable();
|
|
|
|
|
2016-06-20 19:59:15 +02:00
|
|
|
iinfo("press: %02x release: %02x handler: %p arg: %p\n",
|
|
|
|
press, release, handler, arg);
|
2016-03-10 18:21:35 +01:00
|
|
|
|
|
|
|
/* If no events are indicated or if no handler is provided, then this
|
|
|
|
* must really be a request to disable interrupts.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (either && handler)
|
|
|
|
{
|
|
|
|
/* Save the new the handler and argument */
|
|
|
|
|
|
|
|
g_ajoyhandler = handler;
|
|
|
|
g_ajoyarg = arg;
|
|
|
|
|
|
|
|
/* Check each GPIO. */
|
|
|
|
|
|
|
|
for (i = 0; i < AJOY_NGPIOS; i++)
|
|
|
|
{
|
2021-03-20 13:01:22 +01:00
|
|
|
/* Enable interrupts on each pin that has either a press or
|
|
|
|
* release event associated with it.
|
|
|
|
*/
|
2016-03-10 18:21:35 +01:00
|
|
|
|
2021-03-20 13:01:22 +01:00
|
|
|
bit = (1 << i);
|
|
|
|
if ((either & bit) != 0)
|
|
|
|
{
|
|
|
|
/* Active low so a press corresponds to a falling edge and
|
|
|
|
* a release corresponds to a rising edge.
|
|
|
|
*/
|
2016-03-10 18:21:35 +01:00
|
|
|
|
2021-03-20 13:01:22 +01:00
|
|
|
falling = ((press & bit) != 0);
|
|
|
|
rising = ((release & bit) != 0);
|
2016-03-10 18:21:35 +01:00
|
|
|
|
2021-03-20 13:01:22 +01:00
|
|
|
iinfo("GPIO %d: rising: %d falling: %d\n",
|
2016-06-20 19:59:15 +02:00
|
|
|
i, rising, falling);
|
2016-03-10 18:21:35 +01:00
|
|
|
|
2021-03-20 13:01:22 +01:00
|
|
|
stm32l4_gpiosetevent(g_joygpio[i], rising, falling,
|
2020-01-02 17:49:34 +01:00
|
|
|
true, ajoy_interrupt, NULL);
|
2021-03-20 13:01:22 +01:00
|
|
|
}
|
2016-03-10 18:21:35 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
leave_critical_section(flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: ajoy_disable
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Disable all joystick interrupts
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static void ajoy_disable(void)
|
|
|
|
{
|
|
|
|
irqstate_t flags;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* Disable each joystick interrupt */
|
|
|
|
|
|
|
|
flags = up_irq_save();
|
|
|
|
for (i = 0; i < AJOY_NGPIOS; i++)
|
|
|
|
{
|
2020-01-02 17:49:34 +01:00
|
|
|
stm32l4_gpiosetevent(g_joygpio[i], false, false, false, NULL, NULL);
|
2016-03-10 18:21:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
up_irq_restore(flags);
|
|
|
|
|
|
|
|
/* Nullify the handler and argument */
|
|
|
|
|
|
|
|
g_ajoyhandler = NULL;
|
|
|
|
g_ajoyarg = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: ajoy_interrupt
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Discrete joystick interrupt handler
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2017-02-27 13:27:56 +01:00
|
|
|
static int ajoy_interrupt(int irq, FAR void *context, FAR void *arg)
|
2016-03-10 18:21:35 +01:00
|
|
|
{
|
|
|
|
DEBUGASSERT(g_ajoyhandler);
|
|
|
|
|
|
|
|
if (g_ajoyhandler)
|
|
|
|
{
|
|
|
|
g_ajoyhandler(&g_ajoylower, g_ajoyarg);
|
|
|
|
}
|
|
|
|
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: board_ajoy_initialize
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Initialize and register the button joystick driver
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
int board_ajoy_initialize(void)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
#ifndef NO_JOYSTICK_ADC
|
2016-05-26 17:41:50 +02:00
|
|
|
|
2016-06-11 19:59:51 +02:00
|
|
|
iinfo("Initialize ADC driver: /dev/adc0\n");
|
2016-03-10 18:21:35 +01:00
|
|
|
|
2016-12-06 00:06:08 +01:00
|
|
|
/* NOTE: The ADC driver was initialized earlier in the bring-up sequence. */
|
2019-08-19 17:16:08 +02:00
|
|
|
|
2016-05-26 17:41:50 +02:00
|
|
|
/* Open the ADC driver for reading. */
|
2016-03-10 18:21:35 +01:00
|
|
|
|
2018-09-15 18:49:41 +02:00
|
|
|
ret = file_open(&g_adcfile, "/dev/adc0", O_RDONLY);
|
2016-05-26 17:41:50 +02:00
|
|
|
if (ret < 0)
|
|
|
|
{
|
2018-09-15 18:49:41 +02:00
|
|
|
ierr("ERROR: Failed to open /dev/adc0: %d\n", ret);
|
2016-05-26 17:41:50 +02:00
|
|
|
return ret;
|
|
|
|
}
|
2016-03-10 18:21:35 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Configure the GPIO pins as interrupting inputs. NOTE: This is
|
|
|
|
* unnecessary for interrupting pins since it will also be done by
|
2017-08-30 10:40:58 +02:00
|
|
|
* stm32l4_gpiosetevent().
|
2016-03-10 18:21:35 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
for (i = 0; i < AJOY_NGPIOS; i++)
|
|
|
|
{
|
|
|
|
/* Configure the PIO as an input */
|
|
|
|
|
2017-08-30 10:40:58 +02:00
|
|
|
stm32l4_configgpio(g_joygpio[i]);
|
2016-03-10 18:21:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Register the joystick device as /dev/ajoy0 */
|
|
|
|
|
2016-06-11 19:59:51 +02:00
|
|
|
iinfo("Initialize joystick driver: /dev/ajoy0\n");
|
2016-03-10 18:21:35 +01:00
|
|
|
|
|
|
|
ret = ajoy_register("/dev/ajoy0", &g_ajoylower);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
2016-06-11 23:50:49 +02:00
|
|
|
ierr("ERROR: ajoy_register failed: %d\n", ret);
|
2016-03-10 18:21:35 +01:00
|
|
|
#ifndef NO_JOYSTICK_ADC
|
2018-09-15 21:04:56 +02:00
|
|
|
file_close(&g_adcfile);
|
2016-03-10 18:21:35 +01:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2021-04-08 11:33:58 +02:00
|
|
|
#endif /* CONFIG_INPUT_AJOYSTICK */
|