amiro-os / unittests / periphery-lld / src / ut_alld_INA219_v1.c @ 21e5be0b
History | View | Annotate | Download (8.208 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_INA219_v1.h> |
21 |
|
22 |
#if ((AMIROOS_CFG_TESTS_ENABLE == true) && defined(AMIROLLD_CFG_INA219) && (AMIROLLD_CFG_INA219 == 1)) || defined(__DOXYGEN__) |
23 |
|
24 |
#include <math.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 utAlldIna219Func(BaseSequentialStream* stream, aos_unittest_t* ut) |
51 |
{ |
52 |
aosDbgCheck(ut->data != NULL && ((ut_ina219data_t*)(ut->data))->inad != NULL); |
53 |
|
54 |
// local variables
|
55 |
aos_utresult_t result = {0, 0}; |
56 |
uint32_t status; |
57 |
uint16_t data[6];
|
58 |
uint16_t write_data = 0x1011;
|
59 |
uint16_t new_data[6];
|
60 |
uint16_t reset_data; |
61 |
uint16_t test_calib = 0;
|
62 |
int16_t usensor_data = 0;
|
63 |
uint16_t busready = 0;
|
64 |
uint32_t power = 0;
|
65 |
int32_t shunt; |
66 |
uint32_t bus; |
67 |
|
68 |
chprintf(stream, "read registers...\n");
|
69 |
status = ina219_lld_read_register(((ut_ina219data_t*)ut->data)->inad, INA219_LLD_REGISTER_CONFIGURATION, data, 6, ((ut_ina219data_t*)ut->data)->timeout);
|
70 |
if (status == APAL_STATUS_SUCCESS) {
|
71 |
aosUtPassed(stream, &result); |
72 |
} else {
|
73 |
aosUtFailed(stream, &result); |
74 |
} |
75 |
|
76 |
chprintf(stream, "write registers...\n");
|
77 |
status = ina219_lld_write_register(((ut_ina219data_t*)ut->data)->inad, INA219_LLD_REGISTER_CONFIGURATION, &write_data, 1, ((ut_ina219data_t*)ut->data)->timeout);
|
78 |
status |= ina219_lld_read_register(((ut_ina219data_t*)ut->data)->inad, INA219_LLD_REGISTER_CONFIGURATION, new_data, 6, ((ut_ina219data_t*)ut->data)->timeout);
|
79 |
if (status == APAL_STATUS_SUCCESS && new_data[0] == write_data) { |
80 |
uint8_t errors = 0;
|
81 |
for (uint8_t dataIdx = 1; dataIdx < 6; dataIdx++) { |
82 |
if (new_data[dataIdx] != data[dataIdx]) {
|
83 |
++errors; |
84 |
} |
85 |
} |
86 |
if (errors == 0) { |
87 |
aosUtPassed(stream, &result); |
88 |
} else {
|
89 |
aosUtFailed(stream, &result); |
90 |
} |
91 |
} else {
|
92 |
aosUtFailed(stream, &result); |
93 |
} |
94 |
|
95 |
chprintf(stream, "reset...\n");
|
96 |
status = ina219_lld_reset(((ut_ina219data_t*)ut->data)->inad, ((ut_ina219data_t*)ut->data)->timeout); |
97 |
status |= ina219_lld_read_register(((ut_ina219data_t*)ut->data)->inad, INA219_LLD_REGISTER_CONFIGURATION, &reset_data, 1, ((ut_ina219data_t*)ut->data)->timeout);
|
98 |
if (status == APAL_STATUS_SUCCESS && reset_data == 0x399F) { |
99 |
aosUtPassed(stream, &result); |
100 |
} else {
|
101 |
chprintf(stream, "\tfailed\n");
|
102 |
++result.failed; |
103 |
} |
104 |
|
105 |
chprintf(stream, "read config...\n");
|
106 |
ina219_lld_cfg_t ina_config; |
107 |
status = ina219_lld_read_config(((ut_ina219data_t*)ut->data)->inad, &ina_config, ((ut_ina219data_t*)ut->data)->timeout); |
108 |
if (status == APAL_STATUS_SUCCESS) {
|
109 |
aosUtPassed(stream, &result); |
110 |
} else {
|
111 |
aosUtFailed(stream, &result); |
112 |
} |
113 |
|
114 |
chprintf(stream, "write config...\n");
|
115 |
ina_config.data = 0x7FFu;
|
116 |
status = ina219_lld_write_config(((ut_ina219data_t*)ut->data)->inad, ina_config, ((ut_ina219data_t*)ut->data)->timeout); |
117 |
if (status == APAL_STATUS_SUCCESS) {
|
118 |
aosUtPassed(stream, &result); |
119 |
} else {
|
120 |
aosUtFailed(stream, &result); |
121 |
} |
122 |
|
123 |
|
124 |
chprintf(stream, "calibrate...\n");
|
125 |
ina219_lld_calib_input_t calib_in; |
126 |
calib_in.shunt_resistance_0 = 0.1; |
127 |
calib_in.max_expected_current_A = 0.075; |
128 |
calib_in.current_lsb_uA = 10;
|
129 |
calib_in.cfg_reg = ina_config; |
130 |
ina219_lld_calib_output_t calib_out; |
131 |
status = ina219_lld_calibration(((ut_ina219data_t*)ut->data)->inad, &calib_in, &calib_out); |
132 |
status |= ina219_lld_write_calibration(((ut_ina219data_t*)ut->data)->inad, calib_out.calibration & 0xFFFEu, ((ut_ina219data_t*)ut->data)->timeout);
|
133 |
status |= ina219_lld_write_calibration(((ut_ina219data_t*)ut->data)->inad, 0xA000, ((ut_ina219data_t*)ut->data)->timeout);
|
134 |
ina219_lld_cfg_t test_config; |
135 |
((ut_ina219data_t*)ut->data)->inad->current_lsb_uA = 0xA;
|
136 |
status |= ina219_lld_read_config(((ut_ina219data_t*)ut->data)->inad, &test_config, ((ut_ina219data_t*)ut->data)->timeout); |
137 |
status |= ina219_lld_read_calibration(((ut_ina219data_t*)ut->data)->inad, &test_calib, ((ut_ina219data_t*)ut->data)->timeout); |
138 |
while (!busready || power == 0) { |
139 |
aosThdMSleep(20);
|
140 |
status |= ina219_lld_bus_conversion_ready(((ut_ina219data_t*)ut->data)->inad, &busready, ((ut_ina219data_t*)ut->data)->timeout); |
141 |
status |= ina219_lld_read_power(((ut_ina219data_t*)ut->data)->inad, &power, ((ut_ina219data_t*)ut->data)->timeout); |
142 |
} |
143 |
if (status == APAL_STATUS_SUCCESS) {
|
144 |
aosUtPassed(stream, &result); |
145 |
} else {
|
146 |
aosUtFailed(stream, &result); |
147 |
} |
148 |
|
149 |
chprintf(stream, "read shunt voltage...\n");
|
150 |
status = ina219_lld_read_shunt_voltage(((ut_ina219data_t*)ut->data)->inad, &shunt, ((ut_ina219data_t*)ut->data)->timeout); |
151 |
chprintf(stream, "\t\tshunt voltage: %fV\n", (float)shunt/1000000.f); |
152 |
if (status == APAL_STATUS_SUCCESS) {
|
153 |
aosUtPassed(stream, &result); |
154 |
} else {
|
155 |
aosUtFailed(stream, &result); |
156 |
} |
157 |
|
158 |
chprintf(stream, "read bus voltage (%u%% tolerance)...\n", (uint8_t)(((ut_ina219data_t*)ut->data)->tolerance * 100.f + 0.5f)); |
159 |
status = ina219_lld_read_bus_voltage(((ut_ina219data_t*)ut->data)->inad, &bus, ((ut_ina219data_t*)ut->data)->timeout); |
160 |
chprintf(stream, "\t\tbus voltage: %fV\n", (float)bus/1000000.f); |
161 |
if ((status == APAL_STATUS_SUCCESS) && (fabs(((float)bus/1000000.f) - ((ut_ina219data_t*)ut->data)->v_expected) < ((ut_ina219data_t*)ut->data)->v_expected * ((ut_ina219data_t*)ut->data)->tolerance)) { |
162 |
aosUtPassed(stream, &result); |
163 |
} else {
|
164 |
aosUtFailed(stream, &result); |
165 |
} |
166 |
|
167 |
chprintf(stream, "read power...\n");
|
168 |
status = ina219_lld_read_power(((ut_ina219data_t*)ut->data)->inad, &power, ((ut_ina219data_t*)ut->data)->timeout); |
169 |
chprintf(stream, "\t\tpower: %fW\n", (float)(power)/1000000.f); |
170 |
if (status == APAL_STATUS_SUCCESS) {
|
171 |
aosUtPassed(stream, &result); |
172 |
} else {
|
173 |
aosUtFailed(stream, &result); |
174 |
} |
175 |
|
176 |
chprintf(stream, "read current...\n");
|
177 |
status = ina219_lld_read_current(((ut_ina219data_t*)ut->data)->inad, &usensor_data, ((ut_ina219data_t*)ut->data)->timeout); |
178 |
chprintf(stream, "\t\tcurrent: %fA\n", (float)(usensor_data)/1000000.f); |
179 |
if (status == APAL_STATUS_SUCCESS) {
|
180 |
aosUtPassed(stream, &result); |
181 |
} else {
|
182 |
aosUtFailed(stream, &result); |
183 |
} |
184 |
|
185 |
aosUtInfoMsg(stream, "driver object memory footprint: %u bytes\n", sizeof(INA219Driver)); |
186 |
|
187 |
return result;
|
188 |
} |
189 |
|
190 |
#endif /* (AMIROOS_CFG_TESTS_ENABLE == true) && defined(AMIROLLD_CFG_INA219) && (AMIROLLD_CFG_INA219 == 1) */ |
191 |
|