Statistics
| Branch: | Tag: | Revision:

amiro-os / test / periphery-lld / PCA9544A_v1 / aos_test_PCA9544A.c @ ce12e797

History | View | Annotate | Download (6.672 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 <amiroos.h>
20
#include <aos_test_PCA9544A.h>
21

    
22
#if (AMIROOS_CFG_TESTS_ENABLE == true) || defined(__DOXYGEN__)
23

    
24
/******************************************************************************/
25
/* LOCAL DEFINITIONS                                                          */
26
/******************************************************************************/
27

    
28
/******************************************************************************/
29
/* EXPORTED VARIABLES                                                         */
30
/******************************************************************************/
31

    
32
/******************************************************************************/
33
/* LOCAL TYPES                                                                */
34
/******************************************************************************/
35

    
36
/******************************************************************************/
37
/* LOCAL VARIABLES                                                            */
38
/******************************************************************************/
39

    
40
/******************************************************************************/
41
/* LOCAL FUNCTIONS                                                            */
42
/******************************************************************************/
43

    
44
/******************************************************************************/
45
/* EXPORTED FUNCTIONS                                                         */
46
/******************************************************************************/
47

    
48
aos_testresult_t aosTestPca9544aFunc(BaseSequentialStream* stream, const aos_test_t* test)
49
{
50
  aosDbgCheck(test->data != NULL && ((aos_test_pca9544adata_t*)test->data)->driver != NULL);
51

    
52
  // local variables
53
  aos_testresult_t result;
54
  int32_t status;
55
  uint8_t ctrlreg;
56
  pca9544a_lld_intstatus_t interrupt;
57
  pca9544a_lld_chid_t channel;
58
  uint8_t test_mask = 0x00u;
59

    
60
  aosTestResultInit(&result);
61

    
62
  chprintf(stream, "reading control register...\n");
63
  status = pca9544a_lld_read(((aos_test_pca9544adata_t*)test->data)->driver, &ctrlreg, ((aos_test_pca9544adata_t*)test->data)->timeout);
64
  if (status == APAL_STATUS_OK || status == APAL_STATUS_WARNING) {
65
    aosTestPassed(stream, &result);
66
  } else {
67
    aosTestFailedMsg(stream, &result, "0x%08X\n", status);
68
  }
69

    
70
  chprintf(stream, "writing control register...\n");
71
  status = APAL_STATUS_OK;
72
  status |= pca9544a_lld_write(((aos_test_pca9544adata_t*)test->data)->driver, (uint8_t)(PCA9544A_LLD_CTRLREG_EN), ((aos_test_pca9544adata_t*)test->data)->timeout);
73
  status |= pca9544a_lld_read(((aos_test_pca9544adata_t*)test->data)->driver, &ctrlreg, ((aos_test_pca9544adata_t*)test->data)->timeout);
74
  if ((status == APAL_STATUS_OK  || status == APAL_STATUS_WARNING) && ctrlreg == PCA9544A_LLD_CTRLREG_EN) {
75
    aosTestPassed(stream, &result);
76
  } else {
77
    aosTestFailedMsg(stream, &result, "0x%08X, 0x%X\n", status, ctrlreg);
78
  }
79

    
80
  chprintf(stream, "reading interrupt status...\n");
81
  status = pca9544a_lld_getintstatus(((aos_test_pca9544adata_t*)test->data)->driver, &interrupt, ((aos_test_pca9544adata_t*)test->data)->timeout);
82
  if (status == APAL_STATUS_OK || status == APAL_STATUS_WARNING) {
83
    aosTestPassedMsg(stream, &result, "0x%08X\n", interrupt);
84
  } else {
85
    aosTestFailedMsg(stream, &result, "0x%08X\n", status);
86
  }
87

    
88
  chprintf(stream, "reading current channel...\n");
89
  status = pca9544a_lld_getcurrentchannel(((aos_test_pca9544adata_t*)test->data)->driver, &channel, ((aos_test_pca9544adata_t*)test->data)->timeout);
90
  if (status == APAL_STATUS_OK || status == APAL_STATUS_WARNING) {
91
    aosTestPassedMsg(stream, &result, "0x%08X\n", channel);
92
  } else {
93
    aosTestFailedMsg(stream, &result, "0x%08X\n", status);
94
  }
95

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

    
119
  aosTestInfoMsg(stream,"driver object memory footprint: %u bytes\n", sizeof(PCA9544ADriver));
120

    
121
  return result;
122
}
123

    
124
#endif /* (AMIROOS_CFG_TESTS_ENABLE == true) */
125