-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlightsensor.c
116 lines (97 loc) · 3.58 KB
/
lightsensor.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
/*
* Copyright (C) 2024 Xiaomi Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/****************************************************************************
* Included Files
****************************************************************************/
#include "lightsensor.h"
#include "private.h"
/****************************************************************************
* Pre-processor Definitions
****************************************************************************/
/****************************************************************************
* Private Types
****************************************************************************/
/****************************************************************************
* Private Function Prototypes
****************************************************************************/
/****************************************************************************
* Private Data
****************************************************************************/
struct lightsensor_s {
uv_topic_t topic;
void (*update_cb)(const struct sensor_light[], int n, void *);
void *user_data;
};
/****************************************************************************
* Private Functions
****************************************************************************/
static void lightsensor_topic_cb(uv_topic_t *topic, int status, void *data,
size_t datalen)
{
int count = datalen / sizeof(struct sensor_light);
struct lightsensor_s *sensor = (void *)topic->flags;
/**
* @todo
* Sensor data debounce and filter.
* Add threshold to bypass filter for dramatic changes.
*/
sensor->update_cb(data, count, sensor->user_data);
}
static void poll_close_cb(uv_handle_t *handle)
{
/**/
free(handle);
}
/****************************************************************************
* Public Functions
****************************************************************************/
struct lightsensor_s *lightsensor_open_device(
uv_loop_t *loop, orb_id_t sensor,
void (*update_cb)(const struct sensor_light[], int n, void *),
void *user_data)
{
struct lightsensor_s *handle;
int ret;
if (loop == NULL) {
return NULL;
}
handle = calloc(1, sizeof(*handle));
if (!handle) {
err("Failed to allocate memory for sensor\n");
return NULL;
}
ret =
uv_topic_subscribe(loop, &handle->topic, sensor, lightsensor_topic_cb);
if (ret < 0) {
err("Failed to subscribe to sensor topic: %d\n", ret);
free(handle);
return NULL;
}
uv_topic_set_frequency(&handle->topic, CONFIG_LIGHTSENSOR_FREQUENCY);
handle->topic.flags = (uintptr_t)handle;
handle->update_cb = update_cb;
handle->user_data = user_data;
return handle;
}
void lightsensor_close_device(struct lightsensor_s *sensor)
{
if (sensor == NULL) {
err("Null sensor pointer.\n");
return;
}
uv_topic_unsubscribe(&sensor->topic);
uv_close((uv_handle_t *)&sensor->topic, poll_close_cb);
}