2019-08-19 17:16:08 +02:00
|
|
|
/****************************************************************************
|
2020-05-12 22:19:26 +02:00
|
|
|
* boards/arm/stm32/common/src/stm32_lis3dsh.c
|
2017-09-14 20:03:28 +02:00
|
|
|
*
|
2021-10-21 08:35:37 +02: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
|
2017-09-14 20:03:28 +02:00
|
|
|
*
|
2021-10-21 08:35:37 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2017-09-14 20:03:28 +02:00
|
|
|
*
|
2021-10-21 08:35:37 +02: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.
|
2017-09-14 20:03:28 +02:00
|
|
|
*
|
2019-08-19 17:16:08 +02:00
|
|
|
****************************************************************************/
|
2017-09-14 20:03:28 +02:00
|
|
|
|
2019-08-19 17:16:08 +02:00
|
|
|
/****************************************************************************
|
2017-09-14 20:03:28 +02:00
|
|
|
* Included Files
|
2019-08-19 17:16:08 +02:00
|
|
|
****************************************************************************/
|
2017-09-14 20:03:28 +02:00
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <debug.h>
|
2020-05-12 22:19:26 +02:00
|
|
|
#include <stdio.h>
|
2017-09-14 20:03:28 +02:00
|
|
|
|
|
|
|
#include <nuttx/spi/spi.h>
|
|
|
|
#include <nuttx/sensors/lis3dsh.h>
|
2020-05-12 22:19:26 +02:00
|
|
|
#include <arch/board/board.h>
|
2017-09-14 20:03:28 +02:00
|
|
|
|
|
|
|
#include "stm32.h"
|
|
|
|
|
2019-08-19 17:16:08 +02:00
|
|
|
/****************************************************************************
|
2017-09-14 20:03:28 +02:00
|
|
|
* Pre-processor Definitions
|
2019-08-19 17:16:08 +02:00
|
|
|
****************************************************************************/
|
2017-09-14 20:03:28 +02:00
|
|
|
|
2019-08-19 17:16:08 +02:00
|
|
|
/****************************************************************************
|
2017-09-14 20:03:28 +02:00
|
|
|
* Private Functions
|
2019-08-19 17:16:08 +02:00
|
|
|
****************************************************************************/
|
2017-09-14 20:03:28 +02:00
|
|
|
|
2019-08-19 17:16:08 +02:00
|
|
|
/****************************************************************************
|
2017-09-14 20:03:28 +02:00
|
|
|
* Name: attach_disc_lis3dsh
|
|
|
|
*
|
|
|
|
* Description:
|
2017-09-14 22:11:20 +02:00
|
|
|
* Attach the lis3dsh interrupt handler to PE0/EXT0 on the STM32F4 as wired
|
|
|
|
* on STM32F4Discovery
|
2017-09-14 20:03:28 +02:00
|
|
|
*
|
2018-02-01 17:00:02 +01:00
|
|
|
* Input Parameters:
|
2020-05-12 22:36:48 +02:00
|
|
|
* config - The lis3dsh instance configuration data containing
|
|
|
|
* the IRQ number, device ID and interrupt handler
|
2017-09-14 20:03:28 +02:00
|
|
|
* interrupt_handler - The interrupt handler to attach
|
|
|
|
* arg -
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* Zero (OK) on success; a negated errno value on failure.
|
|
|
|
*
|
2019-08-19 17:16:08 +02:00
|
|
|
****************************************************************************/
|
2020-05-12 22:36:48 +02:00
|
|
|
|
2020-05-12 22:19:26 +02:00
|
|
|
int attach_disc_lis3dsh(FAR struct lis3dsh_config_s *config,
|
|
|
|
xcpt_t interrupt_handler)
|
2017-09-14 22:11:20 +02:00
|
|
|
{
|
2020-05-12 22:36:48 +02:00
|
|
|
return stm32_gpiosetevent(BOARD_LIS3DSH_GPIO_EXT0, true, false, false,
|
|
|
|
interrupt_handler, NULL);
|
2017-09-14 20:03:28 +02:00
|
|
|
}
|
|
|
|
|
2019-08-19 17:16:08 +02:00
|
|
|
/****************************************************************************
|
2017-09-14 20:03:28 +02:00
|
|
|
* Public Functions
|
2019-08-19 17:16:08 +02:00
|
|
|
****************************************************************************/
|
2017-09-14 20:03:28 +02:00
|
|
|
|
2019-08-19 17:16:08 +02:00
|
|
|
/****************************************************************************
|
2020-05-12 22:19:26 +02:00
|
|
|
* Name: board_lis3dsh_initialize
|
2017-09-14 20:03:28 +02:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Initialize and register the LIS3DSH 3-axis accelerometer.
|
|
|
|
*
|
2018-02-01 17:00:02 +01:00
|
|
|
* Input Parameters:
|
2020-05-12 22:19:26 +02:00
|
|
|
* devno - The device number, used to build the device path as /dev/accN
|
|
|
|
* busno - The SPI bus number
|
2017-09-14 20:03:28 +02:00
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* Zero (OK) on success; a negated errno value on failure.
|
|
|
|
*
|
2019-08-19 17:16:08 +02:00
|
|
|
****************************************************************************/
|
2018-08-13 15:39:38 +02:00
|
|
|
|
2020-05-12 22:19:26 +02:00
|
|
|
int board_lis3dsh_initialize(int devno, int busno)
|
2017-09-14 20:03:28 +02:00
|
|
|
{
|
|
|
|
static struct lis3dsh_config_s acc0_config;
|
2020-05-12 22:19:26 +02:00
|
|
|
char devpath[12];
|
2017-09-14 20:03:28 +02:00
|
|
|
struct spi_dev_s *spi;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
sninfo("Initializing LIS3DSH\n");
|
2018-08-13 15:39:38 +02:00
|
|
|
|
2020-05-12 22:19:26 +02:00
|
|
|
acc0_config.irq = 22;
|
|
|
|
acc0_config.spi_devid = 0;
|
2017-09-14 20:03:28 +02:00
|
|
|
acc0_config.attach = &attach_disc_lis3dsh;
|
|
|
|
|
|
|
|
spi = stm32_spibus_initialize(1);
|
2017-09-14 22:11:20 +02:00
|
|
|
if (!spi)
|
2017-09-14 22:33:47 +02:00
|
|
|
{
|
|
|
|
spiinfo("Failed to initialize SPI port\n");
|
|
|
|
ret = -ENODEV;
|
|
|
|
}
|
2017-09-14 22:11:20 +02:00
|
|
|
else
|
2017-09-14 22:33:47 +02:00
|
|
|
{
|
2020-05-12 22:19:26 +02:00
|
|
|
snprintf(devpath, 12, "/dev/acc%d", devno);
|
2017-09-14 22:33:47 +02:00
|
|
|
ret = lis3dsh_register(devpath, spi, &acc0_config);
|
|
|
|
}
|
2017-09-14 20:03:28 +02:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|