-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstts751_reg.h
More file actions
399 lines (339 loc) · 11.5 KB
/
stts751_reg.h
File metadata and controls
399 lines (339 loc) · 11.5 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
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
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
/**
******************************************************************************
* @file stts751_reg.h
* @author Sensors Software Solution Team
* @brief This file contains all the functions prototypes for the
* stts751_reg.c driver.
******************************************************************************
* @attention
*
* Copyright (c) 2021 STMicroelectronics.
* All rights reserved.
*
* This software is licensed under terms that can be found in the LICENSE file
* in the root directory of this software component.
* If no LICENSE file comes with this software, it is provided AS-IS.
*
******************************************************************************
*/
/* Define to prevent recursive inclusion -------------------------------------*/
#ifndef STTS751_REGS_H
#define STTS751_REGS_H
#ifdef __cplusplus
extern "C" {
#endif
/* Includes ------------------------------------------------------------------*/
#include <stdint.h>
#include <stddef.h>
#include <math.h>
/** @addtogroup STTS751
* @{
*
*/
/** @defgroup Endianness definitions
* @{
*
*/
#ifndef DRV_BYTE_ORDER
#ifndef __BYTE_ORDER__
#define DRV_LITTLE_ENDIAN 1234
#define DRV_BIG_ENDIAN 4321
/** if _BYTE_ORDER is not defined, choose the endianness of your architecture
* by uncommenting the define which fits your platform endianness
*/
//#define DRV_BYTE_ORDER DRV_BIG_ENDIAN
#define DRV_BYTE_ORDER DRV_LITTLE_ENDIAN
#else /* defined __BYTE_ORDER__ */
#define DRV_LITTLE_ENDIAN __ORDER_LITTLE_ENDIAN__
#define DRV_BIG_ENDIAN __ORDER_BIG_ENDIAN__
#define DRV_BYTE_ORDER __BYTE_ORDER__
#endif /* __BYTE_ORDER__*/
#endif /* DRV_BYTE_ORDER */
/**
* @}
*
*/
/** @defgroup STMicroelectronics sensors common types
* @{
*
*/
#ifndef MEMS_SHARED_TYPES
#define MEMS_SHARED_TYPES
typedef struct
{
#if DRV_BYTE_ORDER == DRV_LITTLE_ENDIAN
uint8_t bit0 : 1;
uint8_t bit1 : 1;
uint8_t bit2 : 1;
uint8_t bit3 : 1;
uint8_t bit4 : 1;
uint8_t bit5 : 1;
uint8_t bit6 : 1;
uint8_t bit7 : 1;
#elif DRV_BYTE_ORDER == DRV_BIG_ENDIAN
uint8_t bit7 : 1;
uint8_t bit6 : 1;
uint8_t bit5 : 1;
uint8_t bit4 : 1;
uint8_t bit3 : 1;
uint8_t bit2 : 1;
uint8_t bit1 : 1;
uint8_t bit0 : 1;
#endif /* DRV_BYTE_ORDER */
} bitwise_t;
#define PROPERTY_DISABLE (0U)
#define PROPERTY_ENABLE (1U)
/** @addtogroup Interfaces_Functions
* @brief This section provide a set of functions used to read and
* write a generic register of the device.
* MANDATORY: return 0 -> no Error.
* @{
*
*/
typedef int32_t (*stmdev_write_ptr)(void *, uint8_t, const uint8_t *, uint16_t);
typedef int32_t (*stmdev_read_ptr)(void *, uint8_t, uint8_t *, uint16_t);
typedef void (*stmdev_mdelay_ptr)(uint32_t millisec);
typedef struct
{
/** Component mandatory fields **/
stmdev_write_ptr write_reg;
stmdev_read_ptr read_reg;
/** Component optional fields **/
stmdev_mdelay_ptr mdelay;
/** Customizable optional pointer **/
void *handle;
/** private data **/
void *priv_data;
} stmdev_ctx_t;
/**
* @}
*
*/
#endif /* MEMS_SHARED_TYPES */
#ifndef MEMS_UCF_SHARED_TYPES
#define MEMS_UCF_SHARED_TYPES
/** @defgroup Generic address-data structure definition
* @brief This structure is useful to load a predefined configuration
* of a sensor.
* You can create a sensor configuration by your own or using
* Unico / Unicleo tools available on STMicroelectronics
* web site.
*
* @{
*
*/
typedef struct
{
uint8_t address;
uint8_t data;
} ucf_line_t;
/**
* @}
*
*/
#endif /* MEMS_UCF_SHARED_TYPES */
/**
* @}
*
*/
/** @defgroup STTS751_Infos
* @{
*
*/
/** I2C Device Address 8 bit format **/
#define STTS751_0xxxx_ADD_7K5 0x91U
#define STTS751_0xxxx_ADD_12K 0x93U
#define STTS751_0xxxx_ADD_20K 0x71U
#define STTS751_0xxxx_ADD_33K 0x73U
#define STTS751_1xxxx_ADD_7K5 0x95U
#define STTS751_1xxxx_ADD_12K 0x97U
#define STTS751_1xxxx_ADD_20K 0x75U
#define STTS751_1xxxx_ADD_33K 0x77U
/** Device Identification **/
/* Product ID */
#define STTS751_ID_0xxxx 0x00U
#define STTS751_ID_1xxxx 0x01U
/* Manufacturer ID */
#define STTS751_ID_MAN 0x53U
/* Revision number */
#define STTS751_REV 0x01U
/**
* @}
*
*/
#define STTS751_TEMPERATURE_HIGH 0x00U
#define STTS751_STATUS 0x01U
typedef struct
{
#if DRV_BYTE_ORDER == DRV_LITTLE_ENDIAN
uint8_t thrm : 1;
uint8_t not_used_01 : 4;
uint8_t t_low : 1;
uint8_t t_high : 1;
uint8_t busy : 1;
#elif DRV_BYTE_ORDER == DRV_BIG_ENDIAN
uint8_t busy : 1;
uint8_t t_high : 1;
uint8_t t_low : 1;
uint8_t not_used_01 : 4;
uint8_t thrm : 1;
#endif /* DRV_BYTE_ORDER */
} stts751_status_t;
#define STTS751_TEMPERATURE_LOW 0x02U
#define STTS751_CONFIGURATION 0x03U
typedef struct
{
#if DRV_BYTE_ORDER == DRV_LITTLE_ENDIAN
uint8_t not_used_01 : 2;
uint8_t tres : 2;
uint8_t not_used_02 : 2;
uint8_t stop : 1;
uint8_t mask1 : 1;
#elif DRV_BYTE_ORDER == DRV_BIG_ENDIAN
uint8_t mask1 : 1;
uint8_t stop : 1;
uint8_t not_used_02 : 2;
uint8_t tres : 2;
uint8_t not_used_01 : 2;
#endif /* DRV_BYTE_ORDER */
} stts751_configuration_t;
#define STTS751_CONVERSION_RATE 0x04U
typedef struct
{
#if DRV_BYTE_ORDER == DRV_LITTLE_ENDIAN
uint8_t conv : 4;
uint8_t not_used_01 : 4;
#elif DRV_BYTE_ORDER == DRV_BIG_ENDIAN
uint8_t not_used_01 : 4;
uint8_t conv : 4;
#endif /* DRV_BYTE_ORDER */
} stts751_conversion_rate_t;
#define STTS751_TEMPERATURE_HIGH_LIMIT_HIGH 0x05U
#define STTS751_TEMPERATURE_HIGH_LIMIT_LOW 0x06U
#define STTS751_TEMPERATURE_LOW_LIMIT_HIGH 0x07U
#define STTS751_TEMPERATURE_LOW_LIMIT_LOW 0x08U
#define STTS751_ONE_SHOT 0x0FU
#define STTS751_THERM_LIMIT 0x20U
#define STTS751_THERM_HYSTERESIS 0x21U
#define STTS751_SMBUS_TIMEOUT 0x22U
typedef struct
{
#if DRV_BYTE_ORDER == DRV_LITTLE_ENDIAN
uint8_t not_used_01 : 7;
uint8_t timeout : 1;
#elif DRV_BYTE_ORDER == DRV_BIG_ENDIAN
uint8_t timeout : 1;
uint8_t not_used_01 : 7;
#endif /* DRV_BYTE_ORDER */
} stts751_smbus_timeout_t;
#define STTS751_PRODUCT_ID 0xFDU
#define STTS751_MANUFACTURER_ID 0xFEU
#define STTS751_REVISION_ID 0xFFU
/**
* @defgroup STTS751_Register_Union
* @brief This union group all the registers having a bit-field
* description.
* This union is useful but it's not needed by the driver.
*
* REMOVING this union you are compliant with:
* MISRA-C 2012 [Rule 19.2] -> " Union are not allowed "
*
* @{
*
*/
typedef union
{
stts751_status_t status;
stts751_configuration_t configuration;
stts751_conversion_rate_t conversion_rate;
stts751_smbus_timeout_t smbus_timeout;
bitwise_t bitwise;
uint8_t byte;
} stts751_reg_t;
/**
* @}
*
*/
#ifndef __weak
#define __weak __attribute__((weak))
#endif /* __weak */
/*
* These are the basic platform dependent I/O routines to read
* and write device registers connected on a standard bus.
* The driver keeps offering a default implementation based on function
* pointers to read/write routines for backward compatibility.
* The __weak directive allows the final application to overwrite
* them with a custom implementation.
*/
int32_t stts751_read_reg(const stmdev_ctx_t *ctx, uint8_t reg,
uint8_t *data,
uint16_t len);
int32_t stts751_write_reg(const stmdev_ctx_t *ctx, uint8_t reg,
uint8_t *data,
uint16_t len);
float_t stts751_from_lsb_to_celsius(int16_t lsb);
int16_t stts751_from_celsius_to_lsb(float_t celsius);
typedef enum
{
STTS751_TEMP_ODR_OFF = 0x80,
STTS751_TEMP_ODR_ONE_SHOT = 0x90,
STTS751_TEMP_ODR_62mHz5 = 0x00,
STTS751_TEMP_ODR_125mHz = 0x01,
STTS751_TEMP_ODR_250mHz = 0x02,
STTS751_TEMP_ODR_500mHz = 0x03,
STTS751_TEMP_ODR_1Hz = 0x04,
STTS751_TEMP_ODR_2Hz = 0x05,
STTS751_TEMP_ODR_4Hz = 0x06,
STTS751_TEMP_ODR_8Hz = 0x07,
STTS751_TEMP_ODR_16Hz = 0x08, /* 9, 10, or 11-bit resolutions only */
STTS751_TEMP_ODR_32Hz = 0x09, /* 9 or 10-bit resolutions only */
} stts751_odr_t;
int32_t stts751_temp_data_rate_set(const stmdev_ctx_t *ctx,
stts751_odr_t val);
int32_t stts751_temp_data_rate_get(const stmdev_ctx_t *ctx,
stts751_odr_t *val);
typedef enum
{
STTS751_9bit = 2,
STTS751_10bit = 0,
STTS751_11bit = 1,
STTS751_12bit = 3,
} stts751_tres_t;
int32_t stts751_resolution_set(const stmdev_ctx_t *ctx, stts751_tres_t val);
int32_t stts751_resolution_get(const stmdev_ctx_t *ctx,
stts751_tres_t *val);
int32_t stts751_status_reg_get(const stmdev_ctx_t *ctx,
stts751_status_t *val);
int32_t stts751_flag_busy_get(const stmdev_ctx_t *ctx, uint8_t *val);
int32_t stts751_temperature_raw_get(const stmdev_ctx_t *ctx, int16_t *val);
int32_t stts751_pin_event_route_set(const stmdev_ctx_t *ctx, uint8_t val);
int32_t stts751_pin_event_route_get(const stmdev_ctx_t *ctx, uint8_t *val);
int32_t stts751_high_temperature_threshold_set(const stmdev_ctx_t *ctx,
int16_t val);
int32_t stts751_high_temperature_threshold_get(const stmdev_ctx_t *ctx,
int16_t *val);
int32_t stts751_low_temperature_threshold_set(const stmdev_ctx_t *ctx,
int16_t val);
int32_t stts751_low_temperature_threshold_get(const stmdev_ctx_t *ctx,
int16_t *val);
int32_t stts751_ota_thermal_limit_set(const stmdev_ctx_t *ctx, int8_t val);
int32_t stts751_ota_thermal_limit_get(const stmdev_ctx_t *ctx, int8_t *val);
int32_t stts751_ota_thermal_hyst_set(const stmdev_ctx_t *ctx, int8_t val);
int32_t stts751_ota_thermal_hyst_get(const stmdev_ctx_t *ctx, int8_t *val);
int32_t stts751_smbus_timeout_set(const stmdev_ctx_t *ctx, uint8_t val);
int32_t stts751_smbus_timeout_get(const stmdev_ctx_t *ctx, uint8_t *val);
typedef struct
{
uint8_t product_id;
uint8_t manufacturer_id;
uint8_t revision_id;
} stts751_id_t;
int32_t stts751_device_id_get(const stmdev_ctx_t *ctx, stts751_id_t *buff);
/**
* @}
*
*/
#ifdef __cplusplus
}
#endif
#endif /*STTS751_REGS_H */