ChibiOS/EX 1.3.0
ex_rangefinder.h
Go to the documentation of this file.
1/*
2 ChibiOS - Copyright (C) 2006..2018 Rocco Marco Guglielmi
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15*/
16
17/**
18 * @file ex_rangefinder.h
19 * @brief Generic rangefinder interface header.
20 *
21 * @addtogroup EX_RANGEFINDER
22 * @{
23 */
24
25#ifndef EX_RANGEFINDER_H
26#define EX_RANGEFINDER_H
27
28#include "ex_sensors.h"
29
30/*===========================================================================*/
31/* Driver constants. */
32/*===========================================================================*/
33
34/*===========================================================================*/
35/* Driver pre-compile time settings. */
36/*===========================================================================*/
37
38/*===========================================================================*/
39/* Derived constants and error checks. */
40/*===========================================================================*/
41
42/*===========================================================================*/
43/* Driver data structures and types. */
44/*===========================================================================*/
45
46/**
47 * @brief BaseRangeFinder specific methods.
48 */
49#define _base_rangefinder_methods_alone \
50 /* Invoke the set bias procedure.*/ \
51 msg_t (*set_bias)(void *instance, float biases[]); \
52 /* Remove bias stored data.*/ \
53 msg_t (*reset_bias)(void *instance); \
54 /* Invoke the set sensitivity procedure.*/ \
55 msg_t (*set_sensitivity)(void *instance, float sensitivities[]); \
56 /* Restore sensitivity stored data to default.*/ \
57 msg_t (*reset_sensitivity)(void *instance);
58
59
60/**
61 * @brief BaseRangeFinder specific methods with inherited ones.
62 */
63#define _base_rangefinder_methods \
64 _base_sensor_methods \
65 _base_rangefinder_methods_alone
66
67/**
68 * @brief @p BaseRangeFinder virtual methods table.
69 */
73
74/**
75 * @brief @p BaseRangeFinder specific data.
76 */
77#define _base_rangefinder_data \
78 _base_sensor_data
79
80/**
81 * @extends BaseSensor
82 *
83 * @brief Base rangefinder class.
84 * @details This class represents a generic rangefinder.
85 */
86typedef struct {
87 /** @brief Virtual Methods Table.*/
88 const struct BaseRangeFinderVMT *vmt;
91
92/*===========================================================================*/
93/* Driver macros. */
94/*===========================================================================*/
95/**
96 * @name Macro Functions (BaseRangeFinder)
97 * @{
98 */
99/**
100 * @brief RangeFinder get channels number.
101 *
102 * @param[in] ip pointer to a @p BaseRangeFinder class.
103 * @return The number of channels of the BaseRangeFinder
104 *
105 * @api
106 */
107#define rangefinderGetChannelsNumber(ip) \
108 (ip)->vmt->get_channels_number(ip)
109
110/**
111 * @brief RangeFinder read raw data.
112 *
113 * @param[in] ip pointer to a @p BaseRangeFinder class.
114 * @param[in] dp pointer to a data array.
115 *
116 * @return The operation status.
117 * @retval MSG_OK if the function succeeded.
118 * @retval MSG_RESET if one or more errors occurred.
119 *
120 * @api
121 */
122#define rangefinderReadRaw(ip, dp) \
123 (ip)->vmt->read_raw(ip, dp)
124
125/**
126 * @brief RangeFinder read cooked data.
127 *
128 * @param[in] ip pointer to a @p BaseRangeFinder class.
129 * @param[in] dp pointer to a data array.
130 *
131 * @return The operation status.
132 * @retval MSG_OK if the function succeeded.
133 * @retval MSG_RESET if one or more errors occurred.
134 *
135 * @api
136 */
137#define rangefinderReadCooked(ip, dp) \
138 (ip)->vmt->read_cooked(ip, dp)
139
140/**
141 * @brief Updates rangefinder bias data from received buffer.
142 * @note The bias buffer must have the same length of the
143 * the rangefinder channels number.
144 *
145 * @param[in] ip pointer to a @p BaseRangeFinder class.
146 * @param[in] bp pointer to a buffer of bias values.
147 *
148 * @return The operation status.
149 * @retval MSG_OK if the function succeeded.
150 * @retval MSG_RESET if one or more errors occurred.
151 *
152 * @api
153 */
154#define rangefinderSetBias(ip, bp) \
155 (ip)->vmt->set_bias(ip, bp)
156
157/**
158 * @brief Reset rangefinder bias data restoring it to zero.
159 *
160 * @param[in] ip pointer to a @p BaseRangeFinder class.
161 *
162 * @return The operation status.
163 * @retval MSG_OK if the function succeeded.
164 * @retval MSG_RESET if one or more errors occurred.
165 *
166 * @api
167 */
168#define rangefinderResetBias(ip) \
169 (ip)->vmt->reset_bias(ip)
170
171/**
172 * @brief Updates rangefinder sensitivity data from received buffer.
173 * @note The sensitivity buffer must have the same length of the
174 * the rangefinder channels number.
175 *
176 * @param[in] ip pointer to a @p BaseRangeFinder class.
177 * @param[in] sp pointer to a buffer of sensitivity values.
178 *
179 * @return The operation status.
180 * @retval MSG_OK if the function succeeded.
181 * @retval MSG_RESET if one or more errors occurred.
182 *
183 * @api
184 */
185#define rangefinderSetSensitivity(ip, sp) \
186 (ip)->vmt->set_sensitivity(ip, sp)
187
188/**
189 * @brief Reset rangefinder sensitivity data restoring it to its typical
190 * value.
191 *
192 * @param[in] ip pointer to a @p BaseRangeFinder class.
193 *
194 * @return The operation status.
195 * @retval MSG_OK if the function succeeded.
196 * @retval MSG_RESET if one or more errors occurred.
197 *
198 * @api
199 */
200#define rangefinderResetSensitivity(ip) \
201 (ip)->vmt->reset_sensitivity(ip)
202/** @} */
203
204/*===========================================================================*/
205/* External declarations. */
206/*===========================================================================*/
207
208#ifdef __cplusplus
209extern "C" {
210#endif
211
212#ifdef __cplusplus
213}
214#endif
215
216#endif /* EX_RANGEFINDER_H */
217
218/** @} */
Generic sensors interface header.
#define _base_rangefinder_data
BaseRangeFinder specific data.
#define _base_rangefinder_methods
BaseRangeFinder specific methods with inherited ones.
Base rangefinder class.
const struct BaseRangeFinderVMT * vmt
Virtual Methods Table.
BaseRangeFinder virtual methods table.