-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmaxim_max31865_sensor_v1.c
137 lines (109 loc) · 3.36 KB
/
maxim_max31865_sensor_v1.c
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
/*
*
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
* 2020-10-20 SimpleInit the first version
*/
#include "maxim_max31865_sensor_v1.h"
#include "max31865.h"
//#define DRV_DEBUG
#define DBG_TAG "maxim.max31865.sensor.v1"
#ifdef DRV_DEBUG
#define DBG_LVL DBG_LOG
#else
#define DBG_LVL DBG_INFO
#endif /* DRV_DEBUG */
#include <rtdbg.h>
#define SENSOR_TEMP_RANGE_MAX (800)
#define SENSOR_TEMP_RANGE_MIN (-200)
#ifndef RT_SENSOR_VENDOR_MAXIM
#define RT_SENSOR_VENDOR_MAXIM RT_SENSOR_VENDOR_UNKNOWN
#endif
static RT_SIZE_TYPE _max31865_polling_get_data(rt_sensor_t sensor, struct rt_sensor_data *data)
{
float temperature;
struct max31865_device *max31865_dev = sensor->parent.user_data;
if (sensor->info.type == RT_SENSOR_CLASS_TEMP)
{
temperature = max31865_read_temperature(max31865_dev);
data->data.temp = (rt_int32_t)(temperature * 10);
data->timestamp = rt_sensor_get_ts();
}else
return 0;
return 1;
}
static RT_SIZE_TYPE max31865_fetch_data(struct rt_sensor_device *sensor, void *buf, rt_size_t len)
{
RT_ASSERT(buf);
if (sensor->config.mode == RT_SENSOR_MODE_POLLING)
{
return _max31865_polling_get_data(sensor, buf);
}
else
return 0;
}
static rt_err_t _max31865_self_test(struct rt_sensor_device *sensor)
{
return max31865_detection_fault(sensor->parent.user_data);
}
static rt_err_t max31865_control(struct rt_sensor_device *sensor, int cmd, void *args)
{
rt_err_t result = RT_EOK;
switch (cmd)
{
case RT_SENSOR_CTRL_SELF_TEST:
result = _max31865_self_test(sensor);
break;
default:
return -RT_ERROR;
}
return result;
}
static struct rt_sensor_ops sensor_ops =
{
max31865_fetch_data,
max31865_control
};
int rt_hw_max31865_init(const char *name, struct rt_sensor_config *cfg)
{
rt_int8_t result;
rt_sensor_t sensor_temp = RT_NULL;
struct max31865_device *max31865_dev;
#ifdef PKG_USING_MAX31865
max31865_dev = max31865_init(cfg->intf.dev_name, \
((rt_uint32_t)cfg->intf.user_data >> 4) & 0x0F, \
(rt_uint32_t)cfg->intf.user_data & 0x0F);
if (max31865_dev == RT_NULL)
{
return -RT_ERROR;
}
/* temperature sensor register */
sensor_temp = rt_calloc(1, sizeof(struct rt_sensor_device));
if (sensor_temp == RT_NULL)
return -RT_ERROR;
sensor_temp->info.type = RT_SENSOR_CLASS_TEMP;
sensor_temp->info.vendor = RT_SENSOR_VENDOR_MAXIM;
sensor_temp->info.model = "max31865";
sensor_temp->info.unit = RT_SENSOR_UNIT_DCELSIUS;
sensor_temp->info.intf_type = RT_SENSOR_INTF_SPI;
sensor_temp->info.range_max = SENSOR_TEMP_RANGE_MAX;
sensor_temp->info.range_min = SENSOR_TEMP_RANGE_MIN;
sensor_temp->info.period_min = 50;
rt_memcpy(&sensor_temp->config, cfg, sizeof(struct rt_sensor_config));
sensor_temp->ops = &sensor_ops;
result = rt_hw_sensor_register(sensor_temp, name, RT_DEVICE_FLAG_RDONLY, max31865_dev);
if (result != RT_EOK)
{
LOG_E("device register err code: %d", result);
goto __exit;
}
#endif
return RT_EOK;
__exit:
if (sensor_temp)
rt_free(sensor_temp);
return -RT_ERROR;
}