Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (6.649 KB)

1 e545e620 Thomas Schöpping
/*
2
AMiRo-OS is an operating system designed for the Autonomous Mini Robot (AMiRo) platform.
3 84f0ce9e Thomas Schöpping
Copyright (C) 2016..2019  Thomas Schöpping et al.
4 e545e620 Thomas Schöpping

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 ddf34c3d Thomas Schöpping
#include <amiroos.h>
20 4c72a54c Thomas Schöpping
#include <aos_test_PCA9544A.h>
21 e545e620 Thomas Schöpping
22 4c72a54c Thomas Schöpping
#if (AMIROOS_CFG_TESTS_ENABLE == true) || defined(__DOXYGEN__)
23 ddf34c3d Thomas Schöpping
24 f3ac1c96 Thomas Schöpping
/******************************************************************************/
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 e545e620 Thomas Schöpping
48 4c72a54c Thomas Schöpping
aos_testresult_t aosTestPca9544aFunc(BaseSequentialStream* stream, const aos_test_t* test)
49 e545e620 Thomas Schöpping
{
50 4c72a54c Thomas Schöpping
  aosDbgCheck(test->data != NULL && ((aos_test_pca9544adata_t*)test->data)->driver != NULL);
51 e545e620 Thomas Schöpping
52
  // local variables
53 4c72a54c Thomas Schöpping
  aos_testresult_t result = {0,0};
54
  int32_t status;
55 e545e620 Thomas Schöpping
  uint8_t ctrlreg;
56
  pca9544a_lld_intstatus_t interrupt;
57
  pca9544a_lld_chid_t channel;
58
  uint8_t test_mask = 0x00u;
59
60
  chprintf(stream, "reading control register...\n");
61 4c72a54c Thomas Schöpping
  status = pca9544a_lld_read(((aos_test_pca9544adata_t*)test->data)->driver, &ctrlreg, ((aos_test_pca9544adata_t*)test->data)->timeout);
62 e545e620 Thomas Schöpping
  if (status == APAL_STATUS_OK || status == APAL_STATUS_WARNING) {
63 4c72a54c Thomas Schöpping
    aosTestPassed(stream, &result);
64 e545e620 Thomas Schöpping
  } else {
65 4c72a54c Thomas Schöpping
    aosTestFailedMsg(stream, &result, "0x%08X\n", status);
66 e545e620 Thomas Schöpping
  }
67
68
  chprintf(stream, "writing control register...\n");
69
  status = APAL_STATUS_OK;
70 4c72a54c Thomas Schöpping
  status |= pca9544a_lld_write(((aos_test_pca9544adata_t*)test->data)->driver, (uint8_t)(PCA9544A_LLD_CTRLREG_EN), ((aos_test_pca9544adata_t*)test->data)->timeout);
71
  status |= pca9544a_lld_read(((aos_test_pca9544adata_t*)test->data)->driver, &ctrlreg, ((aos_test_pca9544adata_t*)test->data)->timeout);
72 e545e620 Thomas Schöpping
  if ((status == APAL_STATUS_OK  || status == APAL_STATUS_WARNING) && ctrlreg == PCA9544A_LLD_CTRLREG_EN) {
73 4c72a54c Thomas Schöpping
    aosTestPassed(stream, &result);
74 e545e620 Thomas Schöpping
  } else {
75 4c72a54c Thomas Schöpping
    aosTestFailedMsg(stream, &result, "0x%08X, 0x%X\n", status, ctrlreg);
76 e545e620 Thomas Schöpping
  }
77
78
  chprintf(stream, "reading interrupt status...\n");
79 4c72a54c Thomas Schöpping
  status = pca9544a_lld_getintstatus(((aos_test_pca9544adata_t*)test->data)->driver, &interrupt, ((aos_test_pca9544adata_t*)test->data)->timeout);
80 e545e620 Thomas Schöpping
  if (status == APAL_STATUS_OK || status == APAL_STATUS_WARNING) {
81 4c72a54c Thomas Schöpping
    aosTestPassedMsg(stream, &result, "0x%08X\n", interrupt);
82 e545e620 Thomas Schöpping
  } else {
83 4c72a54c Thomas Schöpping
    aosTestFailedMsg(stream, &result, "0x%08X\n", status);
84 e545e620 Thomas Schöpping
  }
85
86
  chprintf(stream, "reading current channel...\n");
87 4c72a54c Thomas Schöpping
  status = pca9544a_lld_getcurrentchannel(((aos_test_pca9544adata_t*)test->data)->driver, &channel, ((aos_test_pca9544adata_t*)test->data)->timeout);
88 e545e620 Thomas Schöpping
  if (status == APAL_STATUS_OK || status == APAL_STATUS_WARNING) {
89 4c72a54c Thomas Schöpping
    aosTestPassedMsg(stream, &result, "0x%08X\n", channel);
90 e545e620 Thomas Schöpping
  } else {
91 4c72a54c Thomas Schöpping
    aosTestFailedMsg(stream, &result, "0x%08X\n", status);
92 e545e620 Thomas Schöpping
  }
93
94
  chprintf(stream, "setting current channel...\n");
95
  status = APAL_STATUS_OK;
96 4c72a54c Thomas Schöpping
  status |= pca9544a_lld_setchannel(((aos_test_pca9544adata_t*)test->data)->driver, PCA9544A_LLD_CH0, ((aos_test_pca9544adata_t*)test->data)->timeout);
97
  status |= pca9544a_lld_getcurrentchannel(((aos_test_pca9544adata_t*)test->data)->driver, &channel, ((aos_test_pca9544adata_t*)test->data)->timeout);
98 e545e620 Thomas Schöpping
  test_mask |= (channel != PCA9544A_LLD_CH0) ? 0x01u : 0x00u;
99 4c72a54c Thomas Schöpping
  status |= pca9544a_lld_setchannel(((aos_test_pca9544adata_t*)test->data)->driver, PCA9544A_LLD_CH1, ((aos_test_pca9544adata_t*)test->data)->timeout);
100
  status |= pca9544a_lld_getcurrentchannel(((aos_test_pca9544adata_t*)test->data)->driver, &channel, ((aos_test_pca9544adata_t*)test->data)->timeout);
101 e545e620 Thomas Schöpping
  test_mask |= (channel != PCA9544A_LLD_CH1) ? 0x02u : 0x00u;
102 4c72a54c Thomas Schöpping
  status |= pca9544a_lld_setchannel(((aos_test_pca9544adata_t*)test->data)->driver, PCA9544A_LLD_CH2, ((aos_test_pca9544adata_t*)test->data)->timeout);
103
  status |= pca9544a_lld_getcurrentchannel(((aos_test_pca9544adata_t*)test->data)->driver, &channel, ((aos_test_pca9544adata_t*)test->data)->timeout);
104 e545e620 Thomas Schöpping
  test_mask |= (channel != PCA9544A_LLD_CH2) ? 0x04u : 0x00u;
105 4c72a54c Thomas Schöpping
  status |= pca9544a_lld_setchannel(((aos_test_pca9544adata_t*)test->data)->driver, PCA9544A_LLD_CH3, ((aos_test_pca9544adata_t*)test->data)->timeout);
106
  status |= pca9544a_lld_getcurrentchannel(((aos_test_pca9544adata_t*)test->data)->driver, &channel, ((aos_test_pca9544adata_t*)test->data)->timeout);
107 e545e620 Thomas Schöpping
  test_mask |= (channel != PCA9544A_LLD_CH3) ? 0x08u : 0x00u;
108 4c72a54c Thomas Schöpping
  status |= pca9544a_lld_setchannel(((aos_test_pca9544adata_t*)test->data)->driver, PCA9544A_LLD_CH_NONE, ((aos_test_pca9544adata_t*)test->data)->timeout);
109
  status |= pca9544a_lld_getcurrentchannel(((aos_test_pca9544adata_t*)test->data)->driver, &channel, ((aos_test_pca9544adata_t*)test->data)->timeout);
110 e545e620 Thomas Schöpping
  test_mask |= (channel != PCA9544A_LLD_CH_NONE) ? 0x10u : 0x00u;
111
  if ((status == APAL_STATUS_OK || status == APAL_STATUS_WARNING) && test_mask == 0x00u) {
112 4c72a54c Thomas Schöpping
    aosTestPassed(stream, &result);
113 e545e620 Thomas Schöpping
  } else {
114 4c72a54c Thomas Schöpping
    aosTestFailedMsg(stream, &result, "0x%08X, 0x%X\n", status, test_mask);
115 e545e620 Thomas Schöpping
  }
116
117 4c72a54c Thomas Schöpping
  aosTestInfoMsg(stream,"driver object memory footprint: %u bytes\n", sizeof(PCA9544ADriver));
118 e545e620 Thomas Schöpping
119
  return result;
120
}
121
122 4c72a54c Thomas Schöpping
#endif /* (AMIROOS_CFG_TESTS_ENABLE == true) */