nuttx/boards/arm/cxd56xx/common/src/cxd56_bmi160_spi.c
Xiang Xiao cd001725b7 arch/arm: Remove FAR and CODE from board folder(1)
Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
2022-05-03 16:50:52 +03:00

69 lines
2.0 KiB
C

/****************************************************************************
* boards/arm/cxd56xx/common/src/cxd56_bmi160_spi.c
*
* 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
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* 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.
*
****************************************************************************/
/****************************************************************************
* Included Files
****************************************************************************/
#include <nuttx/config.h>
#include <stdio.h>
#include <debug.h>
#include <errno.h>
#include <nuttx/board.h>
#include <nuttx/spi/spi.h>
#include <nuttx/sensors/bmi160.h>
#include "cxd56_spi.h"
/****************************************************************************
* Public Functions
****************************************************************************/
#if defined(CONFIG_CXD56_SPI) && defined(CONFIG_SENSORS_BMI160)
int board_bmi160_initialize(int bus)
{
int ret;
struct spi_dev_s *spi;
sninfo("Initializing BMI160..\n");
/* Initialize spi device */
spi = cxd56_spibus_initialize(bus);
if (!spi)
{
snerr("ERROR: Failed to initialize spi%d.\n", bus);
return -ENODEV;
}
ret = bmi160_register("/dev/accel0", spi);
if (ret < 0)
{
snerr("Error registering BMI160\n");
}
return ret;
}
#endif