Bosch_BMI055_Accelerometer_Registers.hpp
4.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
/****************************************************************************
*
* Copyright (c) 2020 PX4 Development Team. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
* 3. Neither the name PX4 nor the names of its contributors may be
* used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
****************************************************************************/
#pragma once
namespace Bosch::BMI055::Accelerometer
{
// TODO: move to a central header
static constexpr uint8_t Bit0 = (1 << 0);
static constexpr uint8_t Bit1 = (1 << 1);
static constexpr uint8_t Bit2 = (1 << 2);
static constexpr uint8_t Bit3 = (1 << 3);
static constexpr uint8_t Bit4 = (1 << 4);
static constexpr uint8_t Bit5 = (1 << 5);
static constexpr uint8_t Bit6 = (1 << 6);
static constexpr uint8_t Bit7 = (1 << 7);
static constexpr uint32_t SPI_SPEED = 10 * 1000 * 1000; // 10MHz SPI serial interface
static constexpr uint8_t DIR_READ = 0x80;
static constexpr uint8_t chip_id = 0b11111010;
enum class Register : uint8_t {
BGW_CHIPID = 0x00,
ACCD_TEMP = 0x08,
INT_STATUS_1 = 0x0A,
FIFO_STATUS = 0x0E,
PMU_RANGE = 0x0F,
ACCD_HBW = 0x13,
BGW_SOFTRESET = 0x14,
INT_EN_1 = 0x17,
INT_MAP_1 = 0x1A,
INT_OUT_CTRL = 0x20,
FIFO_CONFIG_0 = 0x30,
FIFO_CONFIG_1 = 0x3E,
FIFO_DATA = 0x3F,
};
// INT_STATUS_1
enum INT_STATUS_1_BIT : uint8_t {
data_int = Bit7,
fifo_wm_int = Bit6,
fifo_full_int = Bit5,
};
// FIFO_STATUS
enum FIFO_STATUS_BIT : uint8_t {
fifo_overrun = Bit7,
fifo_frame_counter = Bit6 | Bit5 | Bit4 | Bit3 | Bit2 | Bit1 | Bit0, // fifo_frame_counter<6:0>
};
// ACCD_HBW
enum ACCD_HBW_BIT : uint8_t {
data_high_bw = Bit7, // 1 -> unfiltered
};
// PMU_RANGE
enum PMU_RANGE_BIT : uint8_t {
// range<3:0>
range_2g = Bit1 | Bit0, // ́0011b ́ -> ±2g range
range_4g = Bit2 | Bit0, // ́0101b ́ -> ±4g range
range_8g = Bit3, // ́1000b ́ -> ±8g range
range_16g = Bit3 | Bit2, // ́1100b ́ -> ±16g range
};
// INT_EN_1
enum INT_EN_1_BIT : uint8_t {
int_fwm_en = Bit6,
int_ffull_en = Bit5,
data_en = Bit4,
};
// INT_MAP_1
enum INT_MAP_1_BIT : uint8_t {
int2_data = Bit7,
int2_fwm = Bit6,
int2_ffull = Bit5,
int1_ffull = Bit2,
int1_fwm = Bit1,
int1_data = Bit0,
};
// INT_OUT_CTRL
enum INT_OUT_CTRL_BIT : uint8_t {
int1_od = Bit1,
int1_lvl = Bit0,
};
// FIFO_CONFIG_1
enum FIFO_CONFIG_1_BIT : uint8_t {
fifo_mode = Bit6,
};
namespace FIFO
{
struct DATA {
uint8_t ACCD_X_LSB;
uint8_t ACCD_X_MSB;
uint8_t ACCD_Y_LSB;
uint8_t ACCD_Y_MSB;
uint8_t ACCD_Z_LSB;
uint8_t ACCD_Z_MSB;
};
static_assert(sizeof(DATA) == 6);
static constexpr size_t SIZE = sizeof(DATA) * 32; // up to 32 frames of accelerometer data
} // namespace FIFO
} // namespace Bosch::BMI055::Accelerometer