Statistics
| Branch: | Tag: | Revision:

amiro-lld / source / alld_at42qt1050.c @ 9e45662e

History | View | Annotate | Download (6.096 KB)

1 9e45662e Thomas Schöpping
/*
2
AMiRo-LLD is a compilation of low-level hardware drivers for the Autonomous Mini Robot (AMiRo) platform.
3
Copyright (C) 2016..2019  Thomas Schöpping et al.
4

5
This program is free software: you can redistribute it and/or modify
6
it under the terms of the GNU Lesser General Public License as published by
7
the Free Software Foundation, either version 3 of the License, or
8
(at your option) any later version.
9

10
This program is distributed in the hope that it will be useful,
11
but WITHOUT ANY WARRANTY; without even the implied warranty of
12
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
GNU Lesser General Public License for more details.
14

15
You should have received a copy of the GNU Lesser General Public License
16
along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
*/
18
19
/**
20
 * @file    alld_at42qt1050.c
21
 * @brief   Touch sensor function implementations.
22
 *
23
 * @addtogroup lld_touch
24
 * @{
25
 */
26
27
#include <alld_at42qt1050.h>
28
29
#if defined(AMIROLLD_CFG_USE_AT42QT1050) || defined(__DOXYGEN__)
30
31
#include <math.h>
32
33
/**
34
 * @brief   Read 8bit data from any register.
35
 *
36
 * @param[in]   at42qt1050d   The AT42QT1050 driver to use.
37
 * @param[in]   reg           Register address to read from.
38
 * @param[out]  data          Pointer to store the register data to.
39
 * @param[in]   timeout       Timeout for the function to return (in microseconds).
40
 *
41
 * @return    Indicator whether the function call was successful or a timeout occurred.
42
 */
43
inline apalExitStatus_t
44
at42qt1050_lld_read_reg(const AT42QT1050Driver* at42qt1050d, const at42qt1050_lld_register_t reg, uint8_t* const data, const apalTime_t timeout)
45
{
46
  apalDbgAssert(at42qt1050d != NULL && at42qt1050d->i2cd != NULL);
47
  apalDbgAssert(data != NULL);
48
49
  const uint8_t txbuf = (uint8_t)reg;
50
  return apalI2CMasterTransmit(at42qt1050d->i2cd, at42qt1050d->addr, &txbuf, 1, data, 1, timeout);
51
}
52
53
/**
54
 * @brief   Write 8bit data to any (writable) register.
55
 *
56
 * @param[in]   at42qt1050d   The AT42QT1050 driver to use.
57
 * @param[in]   reg           Register address to write to.
58
 * @param[in]   data          Data to transmit.
59
 * @param[in]   timeout       Timeout for the function to return (in microseconds).
60
 *
61
 * @return    Indicator whether the function call was successful or a timeout occurred.
62
 */
63
inline apalExitStatus_t
64
at42qt1050_lld_write_reg(const AT42QT1050Driver* at42qt1050d, const at42qt1050_lld_register_t reg, const uint8_t data, const apalTime_t timeout)
65
{
66
  apalDbgAssert(at42qt1050d != NULL && at42qt1050d->i2cd != NULL);
67
68
  const uint8_t txbuf[2] = { (uint8_t)reg, data };
69
  return apalI2CMasterTransmit(at42qt1050d->i2cd, at42qt1050d->addr, txbuf, 2, NULL, 0, timeout);
70
}
71
72
/**
73
 * @brief   Read signal information of a key.
74
 *
75
 * @param[in]   at42qt1050d   The AT42QT1050 driver to use.
76
 * @param[in]   key           Key to read the signal information of.
77
 * @param[out]  signal        Pointer to store the data to.
78
 * @param[in]   timeout       Timeout for the function to return (in microseconds).
79
 *
80
 * @return    Indicator whether the function call was successful or a timeout occurred.
81
 */
82
inline apalExitStatus_t
83
at42qt1050_lld_read_keyssignal(const AT42QT1050Driver* at42qt1050d, const uint8_t key, uint16_t* signal, const apalTime_t timeout)
84
{
85
  apalDbgAssert(at42qt1050d != NULL && at42qt1050d->i2cd != NULL);
86
  apalDbgAssert(key < AT42QT1050_LLD_NUM_KEYS);
87
  apalDbgAssert(signal != NULL);
88
89
  const uint8_t txbuf = AT42QT1050_LLD_REG_KEYSIGNAL_0 + (2*key) + ((key > 1) ? 1 : 0);
90
  uint8_t rxbuf[2];
91
  const apalExitStatus_t status = apalI2CMasterTransmit(at42qt1050d->i2cd, at42qt1050d->addr, &txbuf, 1, rxbuf, 2, timeout);
92
  *signal = (rxbuf[0] << 8) | rxbuf[1];
93
  return status;
94
}
95
96
/**
97
 * @brief   Read reference data of a key.
98
 *
99
 * @param[in]   at42qt1050d   The AT42QT1050 driver to use.
100
 * @param[in]   key           Key to read the signal information of.
101
 * @param[out]  refdata       Pointer to store the data to.
102
 * @param[in]   timeout       Timeout for the function to return (in microseconds).
103
 *
104
 * @return    Indicator whether the function call was successful or a timeout occurred.
105
 */
106
inline apalExitStatus_t
107
at42qt1050_lld_read_referencedata(const AT42QT1050Driver* at42qt1050d, const uint8_t key, uint16_t* refdata, const apalTime_t timeout)
108
{
109
  apalDbgAssert(at42qt1050d != NULL && at42qt1050d->i2cd != NULL);
110
  apalDbgAssert(key < AT42QT1050_LLD_NUM_KEYS);
111
  apalDbgAssert(refdata != NULL);
112
113
  const uint8_t txbuf = AT42QT1050_LLD_REG_REFERENCEDATA_0 + (2*key) + ((key > 1) ? 1 : 0);
114
  uint8_t rxbuf[2];
115
  const apalExitStatus_t status = apalI2CMasterTransmit(at42qt1050d->i2cd, at42qt1050d->addr, &txbuf, 1, rxbuf, 2, timeout);
116
  *refdata = (rxbuf[0] << 8) | rxbuf[1];
117
  return status;
118
}
119
120
/**
121
 * @brief   Convert a 4 bit pulse value to the representing number of samples.
122
 * @details Calculation: <#samples> = 2^(<pulse value>)
123
 *
124
 * @param[in]   pulse   Pulse value.
125
 *
126
 * @return    Resulting sample count.
127
 */
128
inline uint16_t
129
at42qt1050_lld_pulse2samples(const uint8_t pulse)
130
{
131
  apalDbgAssert(pulse <= 0x0Fu);
132
133
  return (1 << pulse);
134
}
135
136
/**
137
 * @brief   Convert a desired number of samples to the according (theoretical) pulse value.
138
 * @details Calculation: <pulse value> = log2(<#samples>)
139
 *
140
 * @param[in]   samples   Desired number of samples.
141
 *
142
 * @return    The (theoretical) value to set to the pulse register.
143
 */
144
inline float
145
at42qt1050_lld_samples2pulse(const uint16_t samples)
146
{
147
  return log2f(samples);
148
}
149
150
/**
151
 * @brief   Convert a 4 bit scale value to the accoring scaling factor.
152
 * @details Calculation: <scaling factor> = 2^(<scale value>)
153
 *
154
 * @param[in]   scale   Scale value.
155
 *
156
 * @return    Resulting scaling factor.
157
 */
158
inline uint16_t
159
at42qt1050_lld_scale2scaling(const uint8_t scale)
160
{
161
  apalDbgAssert(scale <= 0x0Fu);
162
163
  return (1 << scale);
164
}
165
166
/**
167
 * @brief   Convert a desired scaling factor to the according (theoretical) scale value.
168
 * @details Calculation: <scale value> = log2(<scaling factor>
169
 * )
170
 * @param[in]   factor    Desired scaling factor.
171
 *
172
 * @return    The (theoretcial) value to set to the scale register.
173
 */
174
inline float
175
at42qt1050_lld_scaling2scale(const uint16_t factor)
176
{
177
  return log2f(factor);
178
}
179
180
#endif /* defined(AMIROLLD_CFG_USE_AT42QT1050) */
181
182
/** @} */