mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-03 12:51:57 +00:00
Replace the existing Apache 2.0 boilerplate header with an SPDX tag throughout the zephyr code tree. This patch was generated via a script run over the master branch. Also updated doc/porting/application.rst that had a dependency on line numbers in a literal include. Manually updated subsys/logging/sys_log.c that had a malformed header in the original file. Also cleanup several cases that already had a SPDX tag and we either got a duplicate or missed updating. Jira: ZEP-1457 Change-Id: I6131a1d4ee0e58f5b938300c2d2fc77d2e69572c Signed-off-by: David B. Kinder <david.b.kinder@intel.com> Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
83 lines
1.7 KiB
C
83 lines
1.7 KiB
C
/*
|
|
* Copyright (c) 2016 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef __SENSOR_MPU6050_H__
|
|
#define __SENSOR_MPU6050_H__
|
|
|
|
#include <device.h>
|
|
#include <gpio.h>
|
|
#include <misc/util.h>
|
|
#include <stdint.h>
|
|
|
|
#define SYS_LOG_DOMAIN "MPU6050"
|
|
#define SYS_LOG_LEVEL CONFIG_SYS_LOG_SENSOR_LEVEL
|
|
#include <logging/sys_log.h>
|
|
|
|
#define MPU6050_REG_CHIP_ID 0x75
|
|
#define MPU6050_CHIP_ID 0x68
|
|
|
|
#define MPU6050_REG_GYRO_CFG 0x1B
|
|
#define MPU6050_GYRO_FS_SHIFT 3
|
|
|
|
#define MPU6050_REG_ACCEL_CFG 0x1C
|
|
#define MPU6050_ACCEL_FS_SHIFT 3
|
|
|
|
#define MPU6050_REG_INT_EN 0x38
|
|
#define MPU6050_DRDY_EN BIT(0)
|
|
|
|
#define MPU6050_REG_DATA_START 0x3B
|
|
|
|
#define MPU6050_REG_PWR_MGMT1 0x6B
|
|
#define MPU6050_SLEEP_EN BIT(6)
|
|
|
|
/* measured in degrees/sec x10 to avoid floating point */
|
|
static const uint16_t mpu6050_gyro_sensitivity_x10[] = {
|
|
1310, 655, 328, 164
|
|
};
|
|
|
|
struct mpu6050_data {
|
|
struct device *i2c;
|
|
|
|
int16_t accel_x;
|
|
int16_t accel_y;
|
|
int16_t accel_z;
|
|
uint16_t accel_sensitivity_shift;
|
|
|
|
int16_t temp;
|
|
|
|
int16_t gyro_x;
|
|
int16_t gyro_y;
|
|
int16_t gyro_z;
|
|
uint16_t gyro_sensitivity_x10;
|
|
|
|
#ifdef CONFIG_MPU6050_TRIGGER
|
|
struct device *gpio;
|
|
struct gpio_callback gpio_cb;
|
|
|
|
struct sensor_trigger data_ready_trigger;
|
|
sensor_trigger_handler_t data_ready_handler;
|
|
|
|
#if defined(CONFIG_MPU6050_TRIGGER_OWN_THREAD)
|
|
char __stack thread_stack[CONFIG_MPU6050_THREAD_STACK_SIZE];
|
|
struct k_sem gpio_sem;
|
|
#elif defined(CONFIG_MPU6050_TRIGGER_GLOBAL_THREAD)
|
|
struct k_work work;
|
|
struct device *dev;
|
|
#endif
|
|
|
|
#endif /* CONFIG_MPU6050_TRIGGER */
|
|
};
|
|
|
|
#ifdef CONFIG_MPU6050_TRIGGER
|
|
int mpu6050_trigger_set(struct device *dev,
|
|
const struct sensor_trigger *trig,
|
|
sensor_trigger_handler_t handler);
|
|
|
|
int mpu6050_init_interrupt(struct device *dev);
|
|
#endif
|
|
|
|
#endif /* __SENSOR_MPU6050__ */
|