amiro-os / test / periphery-lld / PCAL6524_v1 / aos_test_PCAL6524.c @ ad8a2568
History | View | Annotate | Download (9.633 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_PCAL6524.h> |
21 |
|
22 |
#if (AMIROOS_CFG_TESTS_ENABLE == true) || defined(__DOXYGEN__) |
23 |
|
24 |
#include <string.h> |
25 |
|
26 |
/******************************************************************************/
|
27 |
/* LOCAL DEFINITIONS */
|
28 |
/******************************************************************************/
|
29 |
|
30 |
/******************************************************************************/
|
31 |
/* EXPORTED VARIABLES */
|
32 |
/******************************************************************************/
|
33 |
|
34 |
/******************************************************************************/
|
35 |
/* LOCAL TYPES */
|
36 |
/******************************************************************************/
|
37 |
|
38 |
/******************************************************************************/
|
39 |
/* LOCAL VARIABLES */
|
40 |
/******************************************************************************/
|
41 |
|
42 |
/******************************************************************************/
|
43 |
/* LOCAL FUNCTIONS */
|
44 |
/******************************************************************************/
|
45 |
|
46 |
/******************************************************************************/
|
47 |
/* EXPORTED FUNCTIONS */
|
48 |
/******************************************************************************/
|
49 |
|
50 |
aos_testresult_t aosTestPcal6524Func(BaseSequentialStream* stream, const aos_test_t* test)
|
51 |
{ |
52 |
aosDbgCheck((test->data != NULL) && (((aos_test_pcal6524data_t*)test->data)->pcal6524d != NULL)); |
53 |
|
54 |
// local variables
|
55 |
aos_testresult_t result; |
56 |
int32_t status; |
57 |
uint8_t buffer[24];
|
58 |
memset(buffer, 0xAA, sizeof(buffer)); |
59 |
|
60 |
aosTestResultInit(&result); |
61 |
|
62 |
// This test is currently not supported. See PCAL6524 driver implementation for further information.
|
63 |
// chprintf(stream, "reading device ID...\n");
|
64 |
// status = pcal6524_lld_read_id(((aos_test_pcal6524data_t*)test->data)->pcal6524d, buffer, ((aos_test_pcal6524data_t*)test->data)->timeout);
|
65 |
// chprintf(stream, "\t\traw: 0x%02X 0x%02X 0x%02X\n", buffer[0], buffer[1], buffer[2]);
|
66 |
// chprintf(stream, "\t\tname: 0x%03X\n", ((pcal6524_lld_deviceid_t*)buffer)->name);
|
67 |
// chprintf(stream, "\t\tpart: 0x%03X\n", ((pcal6524_lld_deviceid_t*)buffer)->part);
|
68 |
// chprintf(stream, "\t\trevision: 0x%01X\n", ((pcal6524_lld_deviceid_t*)buffer)->revision);
|
69 |
// if ((status == APAL_STATUS_OK) || (status == APAL_STATUS_WARNING)) {
|
70 |
// aosTestPassed(stream, &result);
|
71 |
// } else {
|
72 |
// aosTestFailedMsg(stream, &result, "0x%08X\n", status);
|
73 |
// }
|
74 |
|
75 |
chprintf(stream, "reading register...\n");
|
76 |
status = pcal6524_lld_read_reg(((aos_test_pcal6524data_t*)test->data)->pcal6524d, PCAL6524_LLD_CMD_SWITCHDEBOUNCECOUNT, buffer, ((aos_test_pcal6524data_t*)test->data)->timeout); |
77 |
chprintf(stream, "\t\tdebounce count: %u\n", buffer[0]); |
78 |
if ((status == APAL_STATUS_OK) || (status == APAL_STATUS_WARNING)) {
|
79 |
aosTestPassed(stream, &result); |
80 |
} else {
|
81 |
aosTestFailedMsg(stream, &result, "0x%08X\n", status);
|
82 |
} |
83 |
|
84 |
chprintf(stream, "writing register...\n");
|
85 |
buffer[3] = 0xFF; |
86 |
status = pcal6524_lld_write_reg(((aos_test_pcal6524data_t*)test->data)->pcal6524d, PCAL6524_LLD_CMD_SWITCHDEBOUNCECOUNT, buffer[3], ((aos_test_pcal6524data_t*)test->data)->timeout);
|
87 |
status |= pcal6524_lld_read_reg(((aos_test_pcal6524data_t*)test->data)->pcal6524d, PCAL6524_LLD_CMD_SWITCHDEBOUNCECOUNT, &buffer[4], ((aos_test_pcal6524data_t*)test->data)->timeout);
|
88 |
status |= pcal6524_lld_write_reg(((aos_test_pcal6524data_t*)test->data)->pcal6524d, PCAL6524_LLD_CMD_SWITCHDEBOUNCECOUNT, buffer[0], ((aos_test_pcal6524data_t*)test->data)->timeout);
|
89 |
status |= pcal6524_lld_read_reg(((aos_test_pcal6524data_t*)test->data)->pcal6524d, PCAL6524_LLD_CMD_SWITCHDEBOUNCECOUNT, &buffer[1], ((aos_test_pcal6524data_t*)test->data)->timeout);
|
90 |
if (((status == APAL_STATUS_OK) || (status == APAL_STATUS_WARNING)) &&
|
91 |
((buffer[1] == buffer[0]) && (buffer[4] == buffer[3]))) { |
92 |
aosTestPassed(stream, &result); |
93 |
} else {
|
94 |
aosTestFailedMsg(stream, &result, "0x%08X\n", status);
|
95 |
} |
96 |
|
97 |
chprintf(stream, "reading group...\n");
|
98 |
status = pcal6524_lld_read_group(((aos_test_pcal6524data_t*)test->data)->pcal6524d, PCAL6524_LLD_CMD_OUTPUTDRIVESTRENGTH_P0A, buffer, ((aos_test_pcal6524data_t*)test->data)->timeout); |
99 |
chprintf(stream, "\t\toutput drive strength: 0x%04X 0x%04X 0x%04X\n",
|
100 |
(((uint16_t)buffer[0]) << 8) | buffer[1], |
101 |
(((uint16_t)buffer[2]) << 8) | buffer[3], |
102 |
(((uint16_t)buffer[4]) << 8) | buffer[5]); |
103 |
if ((status == APAL_STATUS_OK) || (status == APAL_STATUS_WARNING)) {
|
104 |
aosTestPassed(stream, &result); |
105 |
} else {
|
106 |
aosTestFailedMsg(stream, &result, "0x%08X\n", status);
|
107 |
} |
108 |
|
109 |
chprintf(stream, "writing group...\n");
|
110 |
memset(&buffer[6], PCAL6524_LL_OUTPUTDRIVESTRENGTH_0_25, 6); |
111 |
status = pcal6524_lld_write_group(((aos_test_pcal6524data_t*)test->data)->pcal6524d, PCAL6524_LLD_CMD_OUTPUTDRIVESTRENGTH_P0A, &buffer[6], ((aos_test_pcal6524data_t*)test->data)->timeout);
|
112 |
status |= pcal6524_lld_read_group(((aos_test_pcal6524data_t*)test->data)->pcal6524d, PCAL6524_LLD_CMD_OUTPUTDRIVESTRENGTH_P0A, &buffer[12], ((aos_test_pcal6524data_t*)test->data)->timeout);
|
113 |
status |= pcal6524_lld_write_group(((aos_test_pcal6524data_t*)test->data)->pcal6524d, PCAL6524_LLD_CMD_OUTPUTDRIVESTRENGTH_P0A, &buffer[0], ((aos_test_pcal6524data_t*)test->data)->timeout);
|
114 |
status |= pcal6524_lld_read_group(((aos_test_pcal6524data_t*)test->data)->pcal6524d, PCAL6524_LLD_CMD_OUTPUTDRIVESTRENGTH_P0A, &buffer[18], ((aos_test_pcal6524data_t*)test->data)->timeout);
|
115 |
if (((status == APAL_STATUS_OK) || (status == APAL_STATUS_WARNING)) &&
|
116 |
((memcmp(&buffer[12], &buffer[6], 6) == 0) && (memcmp(&buffer[18], &buffer[0], 6) == 0))) { |
117 |
aosTestPassed(stream, &result); |
118 |
} else {
|
119 |
aosTestFailedMsg(stream, &result, "0x%08X\n", status);
|
120 |
} |
121 |
|
122 |
chprintf(stream, "reading continuously...\n");
|
123 |
// read the following registers continously (24 bytes):
|
124 |
// output 0-3 + polarity inversions 0-3 + configuration 0-3 + output drive strength 0A-2B + input latch 0-3 + pupd enable 0-3 + pupd selection 0-3
|
125 |
status = pcal6524_lld_read_continuous(((aos_test_pcal6524data_t*)test->data)->pcal6524d, PCAL6524_LLD_CMD_OUTPUT_P0, buffer, 24, ((aos_test_pcal6524data_t*)test->data)->timeout);
|
126 |
chprintf(stream, "\t\toutput: 0x%02X 0x%02X 0x%02X\n", buffer[0], buffer[1], buffer[2]); |
127 |
chprintf(stream, "\t\tpolarity inversion: 0x%02X 0x%02X 0x%02X\n", buffer[3], buffer[4], buffer[5]); |
128 |
chprintf(stream, "\t\tconfiguration: 0x%02X 0x%02X 0x%02X\n", buffer[6], buffer[7], buffer[8]); |
129 |
chprintf(stream, "\t\toutput drive strength: 0x%04X 0x%04X 0x%04X\n",
|
130 |
(((uint16_t)buffer[9]) << 8) | buffer[10], |
131 |
(((uint16_t)buffer[11]) << 8) | buffer[12], |
132 |
(((uint16_t)buffer[13]) << 8) | buffer[14]); |
133 |
chprintf(stream, "\t\tinput latch: 0x%02X 0x%02X 0x%02X\n", buffer[15], buffer[16], buffer[17]); |
134 |
chprintf(stream, "\t\tpupd enable: 0x%02X 0x%02X 0x%02X\n", buffer[18], buffer[19], buffer[20]); |
135 |
chprintf(stream, "\t\tpupd selection: 0x%02X 0x%02X 0x%02X\n", buffer[21], buffer[22], buffer[23]); |
136 |
if ((status == APAL_STATUS_OK) || (status == APAL_STATUS_WARNING)) {
|
137 |
aosTestPassed(stream, &result); |
138 |
} else {
|
139 |
aosTestFailedMsg(stream, &result, "0x%08X\n", status);
|
140 |
} |
141 |
|
142 |
chprintf(stream, "writing continuously...\n");
|
143 |
{ |
144 |
uint8_t writebuffer[24];
|
145 |
uint8_t readbuffer[2][24]; |
146 |
// copy the read configuration but set the output drive strength to factor 0.25
|
147 |
memcpy(writebuffer, buffer, sizeof(buffer));
|
148 |
memset(&writebuffer[9], PCAL6524_LL_OUTPUTDRIVESTRENGTH_0_25, 6); |
149 |
status = pcal6524_lld_write_continuous(((aos_test_pcal6524data_t*)test->data)->pcal6524d, PCAL6524_LLD_CMD_OUTPUT_P0, writebuffer, 24, ((aos_test_pcal6524data_t*)test->data)->timeout);
|
150 |
status |= pcal6524_lld_read_continuous(((aos_test_pcal6524data_t*)test->data)->pcal6524d, PCAL6524_LLD_CMD_OUTPUT_P0, readbuffer[0], 24, ((aos_test_pcal6524data_t*)test->data)->timeout); |
151 |
status |= pcal6524_lld_write_continuous(((aos_test_pcal6524data_t*)test->data)->pcal6524d, PCAL6524_LLD_CMD_OUTPUT_P0, buffer, 24, ((aos_test_pcal6524data_t*)test->data)->timeout);
|
152 |
status |= pcal6524_lld_read_continuous(((aos_test_pcal6524data_t*)test->data)->pcal6524d, PCAL6524_LLD_CMD_OUTPUT_P0, readbuffer[1], 24, ((aos_test_pcal6524data_t*)test->data)->timeout); |
153 |
if (((status == APAL_STATUS_OK) || (status == APAL_STATUS_WARNING)) &&
|
154 |
((memcmp(writebuffer, readbuffer[0], 24) == 0) && (memcmp(buffer, readbuffer[1], 24) == 0))) { |
155 |
aosTestPassed(stream, &result); |
156 |
} else {
|
157 |
aosTestFailedMsg(stream, &result, "0x%08X\n", status);
|
158 |
} |
159 |
} |
160 |
|
161 |
aosTestInfoMsg(stream, "driver object memory footprint: %u bytes\n", sizeof(PCAL6524Driver)); |
162 |
|
163 |
return result;
|
164 |
} |
165 |
|
166 |
#endif /* (AMIROOS_CFG_TESTS_ENABLE == true) */ |