-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Miquel-HAW
committed
Nov 30, 2023
1 parent
79a199b
commit e97f9a7
Showing
7 changed files
with
10 additions
and
105 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,3 @@ | ||
/* | ||
* Copyright (C) 2017 OTA keys S.A. | ||
* | ||
* This file is subject to the terms and conditions of the GNU Lesser | ||
* General Public License v2.1. See the file LICENSE in the top level | ||
* directory for more details. | ||
* | ||
*/ | ||
|
||
/** | ||
* @ingroup drivers_lsm6ds33 | ||
* @{ | ||
* | ||
* @file | ||
* @brief Internal configuration for LSM6DS33 devices | ||
* | ||
* @author Vincent Dupont <[email protected]> | ||
* @author Sebastian Meiling <[email protected]> | ||
* | ||
*/ | ||
|
||
#ifndef LSM6DSXX_INTERNAL_H | ||
#define LSM6DSXX_INTERNAL_H | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,3 @@ | ||
/* | ||
* Copyright (C) 2017 OTA keys S.A. | ||
* | ||
* This file is subject to the terms and conditions of the GNU Lesser | ||
* General Public License v2.1. See the file LICENSE in the top level | ||
* directory for more details. | ||
* | ||
*/ | ||
|
||
/** | ||
* @ingroup drivers_lsm6dsxx | ||
* @{ | ||
* | ||
* @file | ||
* @brief Default configuration for LSM6DSXX devices | ||
* | ||
* @author Vincent Dupont <[email protected]> | ||
* | ||
*/ | ||
|
||
#ifndef LSM6DSXX_PARAMS_H | ||
#define LSM6DSXX_PARAMS_H | ||
|
@@ -37,7 +18,7 @@ extern "C" { | |
#define LSM6DSXX_PARAM_I2C I2C_DEV(0) | ||
#endif | ||
#ifndef LSM6DSXX_PARAM_ADDR | ||
#define LSM6DSXX_PARAM_ADDR (0x6B) /* (0x6A) */ | ||
#define LSM6DSXX_PARAM_ADDR (0x6B) /* (0x6B) for b-l475e-iot01a (0x6A) for feather-sense*/ | ||
#endif | ||
#ifndef LSM6DSXX_PARAM_ACC_ODR | ||
#define LSM6DSXX_PARAM_ACC_ODR (LSM6DSXX_DATA_RATE_52HZ) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,3 @@ | ||
/* | ||
* Copyright (C) 2017 OTA keys S.A. | ||
* | ||
* This file is subject to the terms and conditions of the GNU Lesser | ||
* General Public License v2.1. See the file LICENSE in the top level | ||
* directory for more details. | ||
* | ||
*/ | ||
|
||
/** | ||
* @ingroup drivers_lsm6dsxx | ||
* @{ | ||
* | ||
* @file | ||
* @brief Device driver implementation for the LSM6DSXX 3D accelerometer/gyroscope. | ||
* | ||
* @author Vincent Dupont <[email protected]> | ||
* @author Sebastian Meiling <[email protected]> | ||
* | ||
* @} | ||
*/ | ||
|
||
#include <assert.h> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,3 @@ | ||
/* | ||
* Copyright (C) 2017 OTA keys S.A. | ||
* | ||
* This file is subject to the terms and conditions of the GNU Lesser | ||
* General Public License v2.1. See the file LICENSE in the top level | ||
* directory for more details. | ||
* | ||
*/ | ||
|
||
/** | ||
* @ingroup drivers_lsm6dsxx | ||
* @{ | ||
* | ||
* @file | ||
* @brief SAUL implementation for the LSM6DSXX 3D accelerometer/gyroscope. | ||
* | ||
* @author Vincent Dupont <[email protected]> | ||
* @author Sebastian Meiling <[email protected]> | ||
* | ||
* @} | ||
*/ | ||
|
||
#include "lsm6dsxx.h" | ||
#include "saul.h" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,3 @@ | ||
/* | ||
* Copyright (C) 2017 OTA keys S.A. | ||
* 2017 HAW Hamburg | ||
* | ||
* This file is subject to the terms and conditions of the GNU Lesser | ||
* General Public License v2.1. See the file LICENSE in the top level | ||
* directory for more details. | ||
*/ | ||
|
||
/** | ||
* @ingroup tests | ||
* @{ | ||
* | ||
* @file | ||
* @brief Test application for the LSM6DSXX accelerometer/gyroscope driver. | ||
* | ||
* @author Vincent Dupont <[email protected]> | ||
* @author Sebastian Meiling <[email protected]> | ||
* | ||
* @} | ||
*/ | ||
|
||
#include <stdio.h> | ||
|
||
|