summaryrefslogtreecommitdiff
path: root/keyboards/rate/pistachio_pro/lib/bme280.c
blob: f3dc231dc54b8e17a4a85b5529f49011f20d420e (plain)
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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
/* Copyright 2021 rate
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
#include <stdint.h>
#include "bme280.h"
#include "i2c_master.h"

#define BME280_ADDRESS (0x76<<1)

#define BME280_REG_CALIB00   (0x88)
#define BME280_REG_CALIB25   (0xA1)
#define BME280_REG_CALIB26   (0xE1)
#define BME280_REG_CTRL_HUM  (0xF2)
#define BME280_REG_CTRL_MEAS (0xF4)
#define BME280_REG_CONFIG    (0xF5)
#define BME280_REG_PRESS_MSB (0xf7)

#define I2C_BME280_TIMEOUT (20)

/* BME280 configurator values */
/* [2:0]         Humidity oversampling
 * 000           Skipped
 * 001           oversampling x1
 * 010           oversampling x2
 * 011           oversampling x4
 * 100           oversampling x8
 * 101,others    oversampling x16
 */
#define BME280_CTRL_HUM_VAL (0x01)


/* [7:5]         Pressure oversampling
 * 000           Skipped
 * 001           oversampling x1
 * 010           oversampling x2
 * 011           oversampling x4
 * 100           oversampling x8
 * 101,others    oversampling x16
 * [4:2]         Temperature oversampling
 * 000           Skipped
 * 001           oversampling x1
 * 010           oversampling x2
 * 011           oversampling x4
 * 100           oversampling x8
 * 101,others    oversampling x16
 * [1:0]         Mode
 * 00            Sleep mode
 * 11            Normal mode
 */
#define BME280_CTRL_MEAS_VAL (0x27)

/* [7:5]        t_standby[ms]
 * 000          0.5
 * 001          62.5
 * 010          125
 * 011          250
 * 100          500
 * 101          1000
 * 110          10
 * 111          20
 * [4:2]        Filter corefficient
 * 000          Filter off
 * 001          2
 * 010          4
 * 011          8
 * 100,others   16
 * [0]          SPI interface
 * 0            4-wire
 * 1            3-wire
 */
#define BME280_CONFIG_VAL (0xA0)

static void readTrim(void);
static void readData(void);
static int32_t calibration_T(int32_t adc_T);
static uint32_t calibration_P(int32_t adc_P);
static uint32_t calibration_H(int32_t adc_H);

static uint32_t hum_raw,temp_raw,pres_raw;
static uint16_t dig_T1;
static int16_t dig_T2, dig_T3;
static uint16_t dig_P1;
static int16_t dig_P2, dig_P3, dig_P4, dig_P5, dig_P6, dig_P7, dig_P8, dig_P9;
static uint8_t dig_H1, dig_H3;
static int16_t dig_H2, dig_H4, dig_H5;
static int8_t dig_H6;
static int32_t t_fine;

/* Private */
static void readTrim(void) {
    uint8_t data[32];

    i2c_readReg(BME280_ADDRESS, BME280_REG_CALIB00, &data[0], 24, I2C_BME280_TIMEOUT);
    i2c_readReg(BME280_ADDRESS, BME280_REG_CALIB25, &data[25], 1, I2C_BME280_TIMEOUT);
    i2c_readReg(BME280_ADDRESS, BME280_REG_CALIB26, &data[25], 7, I2C_BME280_TIMEOUT);

    dig_T1 = (data[1] << 8) | data[0];
    dig_T2 = (data[3] << 8) | data[2];
    dig_T3 = (data[5] << 8) | data[4];
    dig_P1 = (data[7] << 8) | data[6];
    dig_P2 = (data[9] << 8) | data[8];
    dig_P3 = (data[11]<< 8) | data[10];
    dig_P4 = (data[13]<< 8) | data[12];
    dig_P5 = (data[15]<< 8) | data[14];
    dig_P6 = (data[17]<< 8) | data[16];
    dig_P7 = (data[19]<< 8) | data[18];
    dig_P8 = (data[21]<< 8) | data[20];
    dig_P9 = (data[23]<< 8) | data[22];
    dig_H1 = data[24];
    dig_H2 = (data[26]<< 8) | data[25];
    dig_H3 = data[27];
    dig_H4 = (data[28]<< 4) | (0x0F & data[29]);
    dig_H5 = (data[30] << 4) | ((data[29] >> 4) & 0x0F);
    dig_H6 = data[31];

    return;
}

static void readData(void) {
    uint8_t data[8];

    i2c_readReg(BME280_ADDRESS, 0xF7, &data[0], 8, I2C_BME280_TIMEOUT);

    pres_raw = data[0];
    pres_raw = (pres_raw<<8) | data[1];
    pres_raw = (pres_raw<<4) | (data[2] >> 4);

    temp_raw = data[3];
    temp_raw = (temp_raw<<8) | data[4];
    temp_raw = (temp_raw<<4) | (data[5] >> 4);

    hum_raw  = data[6];
    hum_raw  = (hum_raw << 8) | data[7];

    return;
}

static int32_t calibration_T(int32_t adc_T) {
    int32_t var1, var2, T;
    var1 = ((((adc_T >> 3) - ((int32_t)dig_T1<<1))) * ((int32_t)dig_T2)) >> 11;
    var2 = (((((adc_T >> 4) - ((int32_t)dig_T1)) * ((adc_T>>4) - ((int32_t)dig_T1))) >> 12) * ((int32_t)dig_T3)) >> 14;

    t_fine = var1 + var2;
    T = (t_fine * 5 + 128) >> 8;

    return T;
}

static uint32_t calibration_P(int32_t adc_P) {
    int32_t var1, var2;
    uint32_t P;

    var1 = (((int32_t)t_fine)>>1) - (int32_t)64000;
    var2 = (((var1>>2) * (var1>>2)) >> 11) * ((int32_t)dig_P6);
    var2 = var2 + ((var1*((int32_t)dig_P5))<<1);
    var2 = (var2>>2)+(((int32_t)dig_P4)<<16);
    var1 = (((dig_P3 * (((var1>>2)*(var1>>2)) >> 13)) >>3) + ((((int32_t)dig_P2) * var1)>>1))>>18;
    var1 = ((((32768+var1))*((int32_t)dig_P1))>>15);
    if (var1 == 0) {
        return 0;
    }
    P = (((uint32_t)(((int32_t)1048576)-adc_P)-(var2>>12)))*3125;
    if( P < 0x80000000 ) {
       P = (P << 1) / ((uint32_t) var1);
    } else {
        P = (P / (uint32_t)var1) * 2;
    }
    var1 = (((int32_t)dig_P9) * ((int32_t)(((P>>3) * (P>>3))>>13)))>>12;
    var2 = (((int32_t)(P>>2)) * ((int32_t)dig_P8))>>13;
    P = (uint32_t)((int32_t)P + ((var1 + var2 + dig_P7) >> 4));

    return P;
}

static uint32_t calibration_H(int32_t adc_H) {
    int32_t v_x1;

    v_x1 = (t_fine - ((int32_t)76800));
    v_x1 = (((((adc_H << 14) -(((int32_t)dig_H4) << 20) - (((int32_t)dig_H5) * v_x1)) +
              ((int32_t)16384)) >> 15) * (((((((v_x1 * ((int32_t)dig_H6)) >> 10) *
              (((v_x1 * ((int32_t)dig_H3)) >> 11) + ((int32_t) 32768))) >> 10) + (( int32_t)2097152)) *
              ((int32_t) dig_H2) + 8192) >> 14));
    v_x1 = (v_x1 - (((((v_x1 >> 15) * (v_x1 >> 15)) >> 7) * ((int32_t)dig_H1)) >> 4));
    v_x1 = (v_x1 < 0 ? 0 : v_x1);
    v_x1 = (v_x1 > 419430400 ? 419430400 : v_x1);

    return (uint32_t)(v_x1 >> 12);
}

/* Public */
void bme280_init(void) {
    uint8_t ctrl_hum_reg;
    uint8_t ctrl_meas_reg;
    uint8_t config_reg;

    ctrl_hum_reg = BME280_CTRL_HUM_VAL;
    ctrl_meas_reg = BME280_CTRL_MEAS_VAL;
    config_reg = BME280_CONFIG_VAL;

    i2c_init();
    i2c_writeReg(BME280_ADDRESS, BME280_REG_CTRL_HUM, &ctrl_hum_reg, 1, I2C_BME280_TIMEOUT);
    i2c_writeReg(BME280_ADDRESS, BME280_REG_CTRL_MEAS, &ctrl_meas_reg, 1, I2C_BME280_TIMEOUT);
    i2c_writeReg(BME280_ADDRESS, BME280_REG_CONFIG, &config_reg, 1, I2C_BME280_TIMEOUT);
    readTrim();

    return;
}

void bme280_exec(void) {
    readData();

    return;
}

double bme280_getTemp(void) {
    double temp_act;
    int32_t temp_cal;

    temp_cal = calibration_T(temp_raw);
    temp_act = (double)temp_cal / 100.0;

    return temp_act;
}

double bme280_getPress(void) {
    double press_act;
    uint32_t press_cal;

    press_cal = calibration_P(pres_raw);
    press_act = (double)press_cal / 100.0;

    return press_act;
}

double bme280_getHum(void) {
    double hum_act;
    uint32_t hum_cal;

    hum_cal = calibration_H(hum_raw);
    hum_act = (double)hum_cal / 1024.0;

    return hum_act;
}