amiro-os / unittests / periphery-lld / src / ut_alld_PCAL6524_v1.c @ 2a9f9ad7
History | View | Annotate | Download (9.461 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 <ut_alld_PCAL6524_v1.h> |
21 |
|
22 |
#if ((AMIROOS_CFG_TESTS_ENABLE == true) && defined(AMIROLLD_CFG_PCAL6524) && (AMIROLLD_CFG_PCAL6524 == 1)) || 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_utresult_t utAlldPcal6524Func(BaseSequentialStream* stream, aos_unittest_t *ut) |
51 |
{ |
52 |
aosDbgCheck((ut->data != NULL) &&
|
53 |
(((ut_pcal6524data_t*)ut->data)->pcal6524d != NULL));
|
54 |
|
55 |
// local variables
|
56 |
aos_utresult_t result = {0, 0}; |
57 |
uint32_t status; |
58 |
uint8_t buffer[24];
|
59 |
memset(buffer, 0xAA, sizeof(buffer)); |
60 |
|
61 |
// This test is currently not supported. See PCAL6524 driver implementation for further information.
|
62 |
// chprintf(stream, "reading device ID...\n");
|
63 |
// status = pcal6524_lld_read_id(((ut_pcal6524data_t*)ut->data)->pcal6524d, buffer, ((ut_pcal6524data_t*)ut->data)->timeout);
|
64 |
// chprintf(stream, "\t\traw: 0x%02X 0x%02X 0x%02X\n", buffer[0], buffer[1], buffer[2]);
|
65 |
// chprintf(stream, "\t\tname: 0x%03X\n", ((pcal6524_lld_deviceid_t*)buffer)->name);
|
66 |
// chprintf(stream, "\t\tpart: 0x%03X\n", ((pcal6524_lld_deviceid_t*)buffer)->part);
|
67 |
// chprintf(stream, "\t\trevision: 0x%01X\n", ((pcal6524_lld_deviceid_t*)buffer)->revision);
|
68 |
// if ((status == APAL_STATUS_OK) || (status == APAL_STATUS_WARNING)) {
|
69 |
// aosUtPassed(stream, &result);
|
70 |
// } else {
|
71 |
// aosUtFailedMsg(stream, &result, "0x%08X\n", status);
|
72 |
// }
|
73 |
|
74 |
chprintf(stream, "reading register...\n");
|
75 |
status = pcal6524_lld_read_reg(((ut_pcal6524data_t*)ut->data)->pcal6524d, PCAL6524_LLD_CMD_SWITCHDEBOUNCECOUNT, buffer, ((ut_pcal6524data_t*)ut->data)->timeout); |
76 |
chprintf(stream, "\t\tdebounce count: %u\n", buffer[0]); |
77 |
if ((status == APAL_STATUS_OK) || (status == APAL_STATUS_WARNING)) {
|
78 |
aosUtPassed(stream, &result); |
79 |
} else {
|
80 |
aosUtFailedMsg(stream, &result, "0x%08X\n", status);
|
81 |
} |
82 |
|
83 |
chprintf(stream, "writing register...\n");
|
84 |
buffer[3] = 0xFF; |
85 |
status = pcal6524_lld_write_reg(((ut_pcal6524data_t*)ut->data)->pcal6524d, PCAL6524_LLD_CMD_SWITCHDEBOUNCECOUNT, buffer[3], ((ut_pcal6524data_t*)ut->data)->timeout);
|
86 |
status |= pcal6524_lld_read_reg(((ut_pcal6524data_t*)ut->data)->pcal6524d, PCAL6524_LLD_CMD_SWITCHDEBOUNCECOUNT, &buffer[4], ((ut_pcal6524data_t*)ut->data)->timeout);
|
87 |
status |= pcal6524_lld_write_reg(((ut_pcal6524data_t*)ut->data)->pcal6524d, PCAL6524_LLD_CMD_SWITCHDEBOUNCECOUNT, buffer[0], ((ut_pcal6524data_t*)ut->data)->timeout);
|
88 |
status |= pcal6524_lld_read_reg(((ut_pcal6524data_t*)ut->data)->pcal6524d, PCAL6524_LLD_CMD_SWITCHDEBOUNCECOUNT, &buffer[1], ((ut_pcal6524data_t*)ut->data)->timeout);
|
89 |
if (((status == APAL_STATUS_OK) || (status == APAL_STATUS_WARNING)) &&
|
90 |
((buffer[1] == buffer[0]) && (buffer[4] == buffer[3]))) { |
91 |
aosUtPassed(stream, &result); |
92 |
} else {
|
93 |
aosUtFailedMsg(stream, &result, "0x%08X\n", status);
|
94 |
} |
95 |
|
96 |
chprintf(stream, "reading group...\n");
|
97 |
status = pcal6524_lld_read_group(((ut_pcal6524data_t*)ut->data)->pcal6524d, PCAL6524_LLD_CMD_OUTPUTDRIVESTRENGTH_P0A, buffer, ((ut_pcal6524data_t*)ut->data)->timeout); |
98 |
chprintf(stream, "\t\toutput drive strength: 0x%04X 0x%04X 0x%04X\n",
|
99 |
(((uint16_t)buffer[0]) << 8) | buffer[1], |
100 |
(((uint16_t)buffer[2]) << 8) | buffer[3], |
101 |
(((uint16_t)buffer[4]) << 8) | buffer[5]); |
102 |
if ((status == APAL_STATUS_OK) || (status == APAL_STATUS_WARNING)) {
|
103 |
aosUtPassed(stream, &result); |
104 |
} else {
|
105 |
aosUtFailedMsg(stream, &result, "0x%08X\n", status);
|
106 |
} |
107 |
|
108 |
chprintf(stream, "writing group...\n");
|
109 |
memset(&buffer[6], PCAL6524_LL_OUTPUTDRIVESTRENGTH_0_25, 6); |
110 |
status = pcal6524_lld_write_group(((ut_pcal6524data_t*)ut->data)->pcal6524d, PCAL6524_LLD_CMD_OUTPUTDRIVESTRENGTH_P0A, &buffer[6], ((ut_pcal6524data_t*)ut->data)->timeout);
|
111 |
status |= pcal6524_lld_read_group(((ut_pcal6524data_t*)ut->data)->pcal6524d, PCAL6524_LLD_CMD_OUTPUTDRIVESTRENGTH_P0A, &buffer[12], ((ut_pcal6524data_t*)ut->data)->timeout);
|
112 |
status |= pcal6524_lld_write_group(((ut_pcal6524data_t*)ut->data)->pcal6524d, PCAL6524_LLD_CMD_OUTPUTDRIVESTRENGTH_P0A, &buffer[0], ((ut_pcal6524data_t*)ut->data)->timeout);
|
113 |
status |= pcal6524_lld_read_group(((ut_pcal6524data_t*)ut->data)->pcal6524d, PCAL6524_LLD_CMD_OUTPUTDRIVESTRENGTH_P0A, &buffer[18], ((ut_pcal6524data_t*)ut->data)->timeout);
|
114 |
if (((status == APAL_STATUS_OK) || (status == APAL_STATUS_WARNING)) &&
|
115 |
((memcmp(&buffer[12], &buffer[6], 6) == 0) && (memcmp(&buffer[18], &buffer[0], 6) == 0))) { |
116 |
aosUtPassed(stream, &result); |
117 |
} else {
|
118 |
aosUtFailedMsg(stream, &result, "0x%08X\n", status);
|
119 |
} |
120 |
|
121 |
chprintf(stream, "reading continuously...\n");
|
122 |
// read the following registers continously (24 bytes):
|
123 |
// 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
|
124 |
status = pcal6524_lld_read_continuous(((ut_pcal6524data_t*)ut->data)->pcal6524d, PCAL6524_LLD_CMD_OUTPUT_P0, buffer, 24, ((ut_pcal6524data_t*)ut->data)->timeout);
|
125 |
chprintf(stream, "\t\toutput: 0x%02X 0x%02X 0x%02X\n", buffer[0], buffer[1], buffer[2]); |
126 |
chprintf(stream, "\t\tpolarity inversion: 0x%02X 0x%02X 0x%02X\n", buffer[3], buffer[4], buffer[5]); |
127 |
chprintf(stream, "\t\tconfiguration: 0x%02X 0x%02X 0x%02X\n", buffer[6], buffer[7], buffer[8]); |
128 |
chprintf(stream, "\t\toutput drive strength: 0x%04X 0x%04X 0x%04X\n",
|
129 |
(((uint16_t)buffer[9]) << 8) | buffer[10], |
130 |
(((uint16_t)buffer[11]) << 8) | buffer[12], |
131 |
(((uint16_t)buffer[13]) << 8) | buffer[14]); |
132 |
chprintf(stream, "\t\tinput latch: 0x%02X 0x%02X 0x%02X\n", buffer[15], buffer[16], buffer[17]); |
133 |
chprintf(stream, "\t\tpupd enable: 0x%02X 0x%02X 0x%02X\n", buffer[18], buffer[19], buffer[20]); |
134 |
chprintf(stream, "\t\tpupd selection: 0x%02X 0x%02X 0x%02X\n", buffer[21], buffer[22], buffer[23]); |
135 |
if ((status == APAL_STATUS_OK) || (status == APAL_STATUS_WARNING)) {
|
136 |
aosUtPassed(stream, &result); |
137 |
} else {
|
138 |
aosUtFailedMsg(stream, &result, "0x%08X\n", status);
|
139 |
} |
140 |
|
141 |
chprintf(stream, "writing continuously...\n");
|
142 |
{ |
143 |
uint8_t writebuffer[24];
|
144 |
uint8_t readbuffer[2][24]; |
145 |
// copy the read configuration but set the output drive strength to factor 0.25
|
146 |
memcpy(writebuffer, buffer, sizeof(buffer));
|
147 |
memset(&writebuffer[9], PCAL6524_LL_OUTPUTDRIVESTRENGTH_0_25, 6); |
148 |
status = pcal6524_lld_write_continuous(((ut_pcal6524data_t*)ut->data)->pcal6524d, PCAL6524_LLD_CMD_OUTPUT_P0, writebuffer, 24, ((ut_pcal6524data_t*)ut->data)->timeout);
|
149 |
status |= pcal6524_lld_read_continuous(((ut_pcal6524data_t*)ut->data)->pcal6524d, PCAL6524_LLD_CMD_OUTPUT_P0, readbuffer[0], 24, ((ut_pcal6524data_t*)ut->data)->timeout); |
150 |
status |= pcal6524_lld_write_continuous(((ut_pcal6524data_t*)ut->data)->pcal6524d, PCAL6524_LLD_CMD_OUTPUT_P0, buffer, 24, ((ut_pcal6524data_t*)ut->data)->timeout);
|
151 |
status |= pcal6524_lld_read_continuous(((ut_pcal6524data_t*)ut->data)->pcal6524d, PCAL6524_LLD_CMD_OUTPUT_P0, readbuffer[1], 24, ((ut_pcal6524data_t*)ut->data)->timeout); |
152 |
if (((status == APAL_STATUS_OK) || (status == APAL_STATUS_WARNING)) &&
|
153 |
((memcmp(writebuffer, readbuffer[0], 24) == 0) && (memcmp(buffer, readbuffer[1], 24) == 0))) { |
154 |
aosUtPassed(stream, &result); |
155 |
} else {
|
156 |
aosUtFailedMsg(stream, &result, "0x%08X\n", status);
|
157 |
} |
158 |
} |
159 |
|
160 |
aosUtInfoMsg(stream, "driver object memory footprint: %u bytes\n", sizeof(PCAL6524Driver)); |
161 |
|
162 |
return result;
|
163 |
} |
164 |
|
165 |
#endif /* (AMIROOS_CFG_TESTS_ENABLE == true) && defined(AMIROLLD_CFG_PCAL6524) && (AMIROLLD_CFG_PCAL6524 == 1) */ |