amiro-lld / source / alld_tps2051bdbv.c @ 616f3584
History | View | Annotate | Download (2.65 KB)
1 |
/*
|
---|---|
2 |
AMiRo-LLD is a compilation of low-level hardware drivers for the Autonomous Mini Robot (AMiRo) platform.
|
3 |
Copyright (C) 2016..2018 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 |
#include <alld_tps2051bdbv.h> |
20 |
|
21 |
#if defined(AMIROLLD_CFG_USE_TPS2051BDBV) || defined(__DOXYGEN__)
|
22 |
|
23 |
/**
|
24 |
* @brief Set the laser_en GPIO pin.
|
25 |
* @param[in] tpsd tps2051 driver
|
26 |
* @param[in] enable new state of the pin
|
27 |
* @return An indicator whether the call was successfull
|
28 |
*/
|
29 |
inline apalExitStatus_t
|
30 |
tps2051b_lld_set_enable(const TPS2051BDriver* const tps2051b, const tps2051b_lld_enable_t enable) |
31 |
{ |
32 |
apalDbgAssert(tps2051b != NULL);
|
33 |
|
34 |
return apalControlGpioSet(&tps2051b->enable, enable == TPS2051B_LLD_ENABLE ? APAL_GPIO_ON : APAL_GPIO_OFF);
|
35 |
} |
36 |
|
37 |
/**
|
38 |
* @brief Read the laser_en GPIO pin.
|
39 |
* @param[in] tpsd tps2051 driver
|
40 |
* @param[out] enable state of the enable pin
|
41 |
* @return An indicator whether the call was successfull
|
42 |
*/
|
43 |
inline apalExitStatus_t
|
44 |
tps2051b_lld_read_enable(const TPS2051BDriver* const tps2051b, tps2051b_lld_enable_t* const enable) |
45 |
{ |
46 |
apalDbgAssert(tps2051b != NULL);
|
47 |
apalDbgAssert(enable != NULL);
|
48 |
|
49 |
apalControlGpioState_t gpio_state; |
50 |
apalExitStatus_t status = apalControlGpioGet(&tps2051b->enable, &gpio_state); |
51 |
*enable = gpio_state == APAL_GPIO_ON ? TPS2051B_LLD_ENABLE : TPS2051B_LLD_DISABLE; |
52 |
return status;
|
53 |
} |
54 |
|
55 |
/**
|
56 |
* @brief Read the laser_oc GPIO pin.
|
57 |
* @param[in] tpsd tps2051 driver
|
58 |
* @param[out] oc state of the overcurrent pin
|
59 |
* @return An indicator whether the call was successfull
|
60 |
*/
|
61 |
inline apalExitStatus_t
|
62 |
tps2051b_lld_read_overcurrent(const TPS2051BDriver* const tps2051b, tps2051b_lld_overcurrent_t* const oc) |
63 |
{ |
64 |
apalDbgAssert(tps2051b != NULL);
|
65 |
apalDbgAssert(oc != NULL);
|
66 |
|
67 |
apalControlGpioState_t gpio_state; |
68 |
apalExitStatus_t status = apalControlGpioGet(&tps2051b->overcurrent, &gpio_state); |
69 |
*oc = gpio_state == APAL_GPIO_ON ? TPS2051B_LLD_OVERCURRENT : TPS2051B_LLD_NO_OVERCURRENT; |
70 |
return status;
|
71 |
} |
72 |
|
73 |
#endif /* defined(AMIROLLD_CFG_USE_TPS2051BDBV) */ |