Revision 21076167 source/alld_pca9544a.c

View differences:

source/alld_pca9544a.c
61 61
 *
62 62
 * @return  The return status indicates whether the function call was succesfull or a timeout occurred.
63 63
 */
64
inline apalExitStatus_t
65
pca9544a_lld_read(const PCA9544ADriver* const pca9544a, uint8_t* const  data, const apalTime_t timeout)
64
apalExitStatus_t pca9544a_lld_read(const PCA9544ADriver* const pca9544a, uint8_t* const  data, const apalTime_t timeout)
66 65
{
67 66
  apalDbgAssert(pca9544a != NULL);
68 67
  apalDbgAssert(data != NULL);
......
79 78
 *
80 79
 * @return  The return status indicates whether the function call was succesfull or a timeout occurred.
81 80
 */
82
inline apalExitStatus_t
83
pca9544a_lld_write(const PCA9544ADriver* const pca9544a, const uint8_t data, const apalTime_t timeout)
81
apalExitStatus_t pca9544a_lld_write(const PCA9544ADriver* const pca9544a, const uint8_t data, const apalTime_t timeout)
84 82
{
85 83
  apalDbgAssert(pca9544a != NULL);
86 84

  
......
96 94
 *
97 95
 * @return  The return status indicates whether the function call was succesfull or a timeout occurred.
98 96
 */
99
inline apalExitStatus_t
100
pca9544a_lld_getintstatus(const PCA9544ADriver* const pca9544a, pca9544a_lld_intstatus_t* const status, const apalTime_t timeout)
97
apalExitStatus_t pca9544a_lld_getintstatus(const PCA9544ADriver* const pca9544a, pca9544a_lld_intstatus_t* const status, const apalTime_t timeout)
101 98
{
102 99
  apalDbgAssert(pca9544a != NULL);
103 100
  apalDbgAssert(status != NULL);
......
117 114
 *
118 115
 * @return  The return status indicates whether the function call was succesfull or a timeout occurred.
119 116
 */
120
inline apalExitStatus_t
121
pca9544a_lld_getcurrentchannel(const PCA9544ADriver* const pca9544a, pca9544a_lld_chid_t* const channel, const apalTime_t timeout)
117
apalExitStatus_t pca9544a_lld_getcurrentchannel(const PCA9544ADriver* const pca9544a, pca9544a_lld_chid_t* const channel, const apalTime_t timeout)
122 118
{
123 119
  apalDbgAssert(pca9544a != NULL);
124 120
  apalDbgAssert(channel != NULL);
......
142 138
 *
143 139
 * @return  The return status indicates whether the function call was succesfull or a timeout occurred.
144 140
 */
145
inline apalExitStatus_t
146
pca9544a_lld_setchannel(const PCA9544ADriver* const pca9544a, const pca9544a_lld_chid_t channel, const apalTime_t timeout)
141
apalExitStatus_t pca9544a_lld_setchannel(const PCA9544ADriver* const pca9544a, const pca9544a_lld_chid_t channel, const apalTime_t timeout)
147 142
{
148 143
  apalDbgAssert(pca9544a != NULL);
149 144

  

Also available in: Unified diff