Skip to content

Commit d270cde

Browse files
committed
Updated to v2.86.1.
1 parent 126b685 commit d270cde

File tree

183 files changed

+18095
-6460
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

183 files changed

+18095
-6460
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2021 Bosch Sensortec GmbH. All rights reserved.
1+
Copyright (c) 2023 Bosch Sensortec GmbH. All rights reserved.
22

33
BSD-3-Clause
44

OIS_README.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
- User has to include _bmi2_ois.h_ in the code to call OIS related APIs and a _variant header_ for initialization as
1616
well as BMI2 related API calls, as shown below:
1717
``` c
18-
#include "bmi270.h"
18+
#include "bmi261.h"
1919
#include "bmi2_ois.h"
2020
````
2121
### Driver files information<a name=file></a>
@@ -86,7 +86,7 @@ if (rslt != BMI2_OK) {
8686
}
8787

8888
/* Enable accelerometer and gyroscope through host interface */
89-
rslt = bmi270_sensor_enable(sens_list, 2, &dev);
89+
rslt = bmi2_sensor_enable(sens_list, 2, &dev);
9090
if (rslt != BMI2_OK) {
9191
printf("Error: %d\n", rslt);
9292
return;
@@ -167,4 +167,6 @@ if (rslt != BMI2_OK) {
167167
printf("Error: %d\n", rslt);
168168
return;
169169
}
170-
```
170+
```
171+
172+

README.md

+52-52
Original file line numberDiff line numberDiff line change
@@ -1,53 +1,53 @@
1-
BMI270 Sensor API
2-
3-
> This package contains the sensor APIs for the BMI270 sensor
4-
5-
## Sensor Overview
6-
The BMI270 is a small, low power, low noise inertial measurement unit designed for use in mobile applications like augmented reality or indoor navigation which require highly accurate, real-time sensor data.
7-
8-
## Applications
9-
10-
### BMI270 (base)
11-
12-
- Any motion, No motion, Significant motion detectors
13-
- Wrist worn Step counter and Step detector (Pedometer)
14-
- Activity change recognition
15-
- Still
16-
- Walking
17-
- Running
18-
- Wrist gestures
19-
- Push arm down
20-
- Pivot up
21-
- Wrist shake jiggle
22-
- Flick in
23-
- Flick out
24-
- Wrist wear wake up
25-
26-
### BMI270 Context
27-
28-
- Step counter and Step detector (Pedometer)
29-
- Activity change recognition
30-
- Still
31-
- Walking
32-
- Running
33-
34-
### BMI270 Legacy
35-
36-
- Any motion, No motion, Significant motion detector
37-
- Orientation detector (Advanced Potrait-Landscape)
38-
- High-G, Low-G (Freefall) detector
39-
- Flat detector
40-
- Tap detection (Single, Double, Triple taps)
41-
- Smartphone Step counter and Step detector (Pedometer)
42-
- Activity change recognition
43-
- Still
44-
- Walking
45-
- Running
46-
47-
### BMI270 Maximum FIFO
48-
49-
- Supports a 6kB FIFO
50-
51-
For more information refer product page [Link](https://www.bosch-sensortec.com/products/motion-sensors/imus/bmi270.html)
52-
1+
BMI270 Sensor API
2+
3+
> This package contains the sensor APIs for the BMI270 sensor
4+
5+
## Sensor Overview
6+
The BMI270 is a small, low power, low noise inertial measurement unit designed for use in mobile applications like augmented reality or indoor navigation which require highly accurate, real-time sensor data.
7+
8+
## Applications
9+
10+
### BMI270 (base)
11+
12+
- Any motion, No motion, Significant motion detectors
13+
- Wrist worn Step counter and Step detector (Pedometer)
14+
- Activity change recognition
15+
- Still
16+
- Walking
17+
- Running
18+
- Wrist gestures
19+
- Push arm down
20+
- Pivot up
21+
- Wrist shake jiggle
22+
- Flick in
23+
- Flick out
24+
- Wrist wear wake up
25+
26+
### BMI270 Context
27+
28+
- Step counter and Step detector (Pedometer)
29+
- Activity change recognition
30+
- Still
31+
- Walking
32+
- Running
33+
34+
### BMI270 Legacy
35+
36+
- Any motion, No motion, Significant motion detector
37+
- Orientation detector (Advanced Potrait-Landscape)
38+
- High-G, Low-G (Freefall) detector
39+
- Flat detector
40+
- Tap detection (Single, Double, Triple taps)
41+
- Smartphone Step counter and Step detector (Pedometer)
42+
- Activity change recognition
43+
- Still
44+
- Walking
45+
- Running
46+
47+
### BMI270 Maximum FIFO
48+
49+
- Supports a 6kB FIFO
50+
51+
For more information refer product page [Link](https://www.bosch-sensortec.com/products/motion-sensors/imus/bmi270.html)
52+
5353
---

0 commit comments

Comments
 (0)