Statistics
| Branch: | Tag: | Revision:

amiro-os / unittests / periphery-lld / src / ut_alld_pca9544a.c @ 3940ba8a

History | View | Annotate | Download (6.431 KB)

1
/*
2
AMiRo-OS is an operating system designed 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 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 General Public License for more details.
14

15
You should have received a copy of the GNU General Public License
16
along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
*/
18

    
19
#include <ut_alld_pca9544a.h>
20

    
21
#if ((AMIROOS_CFG_TESTS_ENABLE == true) && defined(AMIROLLD_CFG_USE_PCA9544A)) || defined(__DOXYGEN__)
22

    
23
/******************************************************************************/
24
/* LOCAL DEFINITIONS                                                          */
25
/******************************************************************************/
26

    
27
/******************************************************************************/
28
/* EXPORTED VARIABLES                                                         */
29
/******************************************************************************/
30

    
31
/******************************************************************************/
32
/* LOCAL TYPES                                                                */
33
/******************************************************************************/
34

    
35
/******************************************************************************/
36
/* LOCAL VARIABLES                                                            */
37
/******************************************************************************/
38

    
39
/******************************************************************************/
40
/* LOCAL FUNCTIONS                                                            */
41
/******************************************************************************/
42

    
43
/******************************************************************************/
44
/* EXPORTED FUNCTIONS                                                         */
45
/******************************************************************************/
46

    
47
aos_utresult_t utAlldPca9544aFunc(BaseSequentialStream* stream, aos_unittest_t* ut)
48
{
49
  aosDbgCheck(ut->data != NULL && ((ut_pca9544adata_t*)ut->data)->driver != NULL);
50

    
51
  // local variables
52
  aos_utresult_t result = {0,0};
53
  uint32_t status;
54
  uint8_t ctrlreg;
55
  pca9544a_lld_intstatus_t interrupt;
56
  pca9544a_lld_chid_t channel;
57
  uint8_t test_mask = 0x00u;
58

    
59
  chprintf(stream, "reading control register...\n");
60
  status = pca9544a_lld_read(((ut_pca9544adata_t*)ut->data)->driver, &ctrlreg, ((ut_pca9544adata_t*)ut->data)->timeout);
61
  if (status == APAL_STATUS_OK || status == APAL_STATUS_WARNING) {
62
    aosUtPassed(stream, &result);
63
  } else {
64
    aosUtFailedMsg(stream, &result, "0x%08X\n", status);
65
  }
66

    
67
  chprintf(stream, "writing control register...\n");
68
  status = APAL_STATUS_OK;
69
  status |= pca9544a_lld_write(((ut_pca9544adata_t*)ut->data)->driver, (uint8_t)(PCA9544A_LLD_CTRLREG_EN), ((ut_pca9544adata_t*)ut->data)->timeout);
70
  status |= pca9544a_lld_read(((ut_pca9544adata_t*)ut->data)->driver, &ctrlreg, ((ut_pca9544adata_t*)ut->data)->timeout);
71
  if ((status == APAL_STATUS_OK  || status == APAL_STATUS_WARNING) && ctrlreg == PCA9544A_LLD_CTRLREG_EN) {
72
    aosUtPassed(stream, &result);
73
  } else {
74
    aosUtFailedMsg(stream, &result, "0x%08X, 0x%X\n", status, ctrlreg);
75
  }
76

    
77
  chprintf(stream, "reading interrupt status...\n");
78
  status = pca9544a_lld_getintstatus(((ut_pca9544adata_t*)ut->data)->driver, &interrupt, ((ut_pca9544adata_t*)ut->data)->timeout);
79
  if (status == APAL_STATUS_OK || status == APAL_STATUS_WARNING) {
80
    aosUtPassedMsg(stream, &result, "0x%08X\n", interrupt);
81
  } else {
82
    aosUtFailedMsg(stream, &result, "0x%08X\n", status);
83
  }
84

    
85
  chprintf(stream, "reading current channel...\n");
86
  status = pca9544a_lld_getcurrentchannel(((ut_pca9544adata_t*)ut->data)->driver, &channel, ((ut_pca9544adata_t*)ut->data)->timeout);
87
  if (status == APAL_STATUS_OK || status == APAL_STATUS_WARNING) {
88
    aosUtPassedMsg(stream, &result, "0x%08X\n", channel);
89
  } else {
90
    aosUtFailedMsg(stream, &result, "0x%08X\n", status);
91
  }
92

    
93
  chprintf(stream, "setting current channel...\n");
94
  status = APAL_STATUS_OK;
95
  status |= pca9544a_lld_setchannel(((ut_pca9544adata_t*)ut->data)->driver, PCA9544A_LLD_CH0, ((ut_pca9544adata_t*)ut->data)->timeout);
96
  status |= pca9544a_lld_getcurrentchannel(((ut_pca9544adata_t*)ut->data)->driver, &channel, ((ut_pca9544adata_t*)ut->data)->timeout);
97
  test_mask |= (channel != PCA9544A_LLD_CH0) ? 0x01u : 0x00u;
98
  status |= pca9544a_lld_setchannel(((ut_pca9544adata_t*)ut->data)->driver, PCA9544A_LLD_CH1, ((ut_pca9544adata_t*)ut->data)->timeout);
99
  status |= pca9544a_lld_getcurrentchannel(((ut_pca9544adata_t*)ut->data)->driver, &channel, ((ut_pca9544adata_t*)ut->data)->timeout);
100
  test_mask |= (channel != PCA9544A_LLD_CH1) ? 0x02u : 0x00u;
101
  status |= pca9544a_lld_setchannel(((ut_pca9544adata_t*)ut->data)->driver, PCA9544A_LLD_CH2, ((ut_pca9544adata_t*)ut->data)->timeout);
102
  status |= pca9544a_lld_getcurrentchannel(((ut_pca9544adata_t*)ut->data)->driver, &channel, ((ut_pca9544adata_t*)ut->data)->timeout);
103
  test_mask |= (channel != PCA9544A_LLD_CH2) ? 0x04u : 0x00u;
104
  status |= pca9544a_lld_setchannel(((ut_pca9544adata_t*)ut->data)->driver, PCA9544A_LLD_CH3, ((ut_pca9544adata_t*)ut->data)->timeout);
105
  status |= pca9544a_lld_getcurrentchannel(((ut_pca9544adata_t*)ut->data)->driver, &channel, ((ut_pca9544adata_t*)ut->data)->timeout);
106
  test_mask |= (channel != PCA9544A_LLD_CH3) ? 0x08u : 0x00u;
107
  status |= pca9544a_lld_setchannel(((ut_pca9544adata_t*)ut->data)->driver, PCA9544A_LLD_CH_NONE, ((ut_pca9544adata_t*)ut->data)->timeout);
108
  status |= pca9544a_lld_getcurrentchannel(((ut_pca9544adata_t*)ut->data)->driver, &channel, ((ut_pca9544adata_t*)ut->data)->timeout);
109
  test_mask |= (channel != PCA9544A_LLD_CH_NONE) ? 0x10u : 0x00u;
110
  if ((status == APAL_STATUS_OK || status == APAL_STATUS_WARNING) && test_mask == 0x00u) {
111
    aosUtPassed(stream, &result);
112
  } else {
113
    aosUtFailedMsg(stream, &result, "0x%08X, 0x%X\n", status, test_mask);
114
  }
115

    
116
  aosUtInfoMsg(stream,"driver object memory footprint: %u bytes\n", sizeof(PCA9544ADriver));
117

    
118
  return result;
119
}
120

    
121
#endif /* (AMIROOS_CFG_TESTS_ENABLE == true) && defined(AMIROLLD_CFG_USE_PCA9544A) */
122