amiro-os / unittests / periphery-lld / src / ut_alld_bq241xx_v1.c @ 9487b4cd
History | View | Annotate | Download (4.196 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 | e545e620 | Thomas Schöpping | |
21 | ddf34c3d | Thomas Schöpping | #if ((AMIROOS_CFG_TESTS_ENABLE == true) && defined(AMIROLLD_CFG_BQ241xx) && (AMIROLLD_CFG_BQ241xx == 1)) || defined(__DOXYGEN__) |
22 | |||
23 | #include <ut_alld_bq241xx_v1.h> |
||
24 | e545e620 | Thomas Schöpping | |
25 | f3ac1c96 | Thomas Schöpping | /******************************************************************************/
|
26 | /* LOCAL DEFINITIONS */
|
||
27 | /******************************************************************************/
|
||
28 | |||
29 | /******************************************************************************/
|
||
30 | /* EXPORTED VARIABLES */
|
||
31 | /******************************************************************************/
|
||
32 | |||
33 | /******************************************************************************/
|
||
34 | /* LOCAL TYPES */
|
||
35 | /******************************************************************************/
|
||
36 | |||
37 | /******************************************************************************/
|
||
38 | /* LOCAL VARIABLES */
|
||
39 | /******************************************************************************/
|
||
40 | |||
41 | /******************************************************************************/
|
||
42 | /* LOCAL FUNCTIONS */
|
||
43 | /******************************************************************************/
|
||
44 | |||
45 | /******************************************************************************/
|
||
46 | /* EXPORTED FUNCTIONS */
|
||
47 | /******************************************************************************/
|
||
48 | |||
49 | e545e620 | Thomas Schöpping | |
50 | ddf34c3d | Thomas Schöpping | aos_utresult_t utAlldBq241xxFunc(BaseSequentialStream* stream, aos_unittest_t* ut) |
51 | e545e620 | Thomas Schöpping | { |
52 | aosDbgCheck(ut->data != NULL);
|
||
53 | |||
54 | // local variables
|
||
55 | aos_utresult_t result = {0, 0}; |
||
56 | uint32_t status; |
||
57 | ddf34c3d | Thomas Schöpping | bq241xx_lld_enable_t en[3];
|
58 | bq241xx_lld_charge_state_t charge; |
||
59 | e545e620 | Thomas Schöpping | |
60 | chprintf(stream, "read enable pin...\n");
|
||
61 | ddf34c3d | Thomas Schöpping | status = bq241xx_lld_get_enabled((BQ241xxDriver*)ut->data, &en[0]);
|
62 | chprintf(stream, "\t\tcurrently %s\n", (en[0] == BQ241xx_LLD_ENABLED) ? "enabled" : "disabled"); |
||
63 | e545e620 | Thomas Schöpping | if(status == APAL_STATUS_SUCCESS){
|
64 | aosUtPassed(stream, &result); |
||
65 | } else {
|
||
66 | aosUtFailedMsg(stream, &result, "0x%08X\n", status);
|
||
67 | } |
||
68 | |||
69 | chprintf(stream, "write enable pin...\n");
|
||
70 | ddf34c3d | Thomas Schöpping | status = bq241xx_lld_set_enabled((BQ241xxDriver*)ut->data, (en[0] == BQ241xx_LLD_ENABLED) ? BQ241xx_LLD_DISABLED : BQ241xx_LLD_ENABLED);
|
71 | e545e620 | Thomas Schöpping | aosThdMSleep(1);
|
72 | ddf34c3d | Thomas Schöpping | status |= bq241xx_lld_get_enabled((BQ241xxDriver*)ut->data, &en[1]);
|
73 | status |= bq241xx_lld_set_enabled((BQ241xxDriver*)ut->data, en[0]);
|
||
74 | e545e620 | Thomas Schöpping | aosThdMSleep(1);
|
75 | ddf34c3d | Thomas Schöpping | status |= bq241xx_lld_get_enabled((BQ241xxDriver*)ut->data, &en[2]);
|
76 | e545e620 | Thomas Schöpping | if(status == APAL_STATUS_SUCCESS && en[0] != en[1] && en[0] == en[2] && en[1] != en[2]){ |
77 | aosUtPassed(stream, &result); |
||
78 | } else {
|
||
79 | aosUtFailedMsg(stream, &result, "0x%08X, %u-%u\n", status, en[1], en[2]); |
||
80 | } |
||
81 | |||
82 | chprintf(stream, "read status pin...\n");
|
||
83 | aosThdMSleep(500);
|
||
84 | ddf34c3d | Thomas Schöpping | status = bq241xx_lld_get_charge_status((BQ241xxDriver*)ut->data, &charge); |
85 | chprintf(stream, "\t\tcharge status: %scharging\n", (charge == BQ241xx_LLD_CHARGING) ? "" : "not "); |
||
86 | e545e620 | Thomas Schöpping | if (status == APAL_STATUS_SUCCESS) {
|
87 | aosUtPassed(stream, &result); |
||
88 | } else {
|
||
89 | aosUtFailedMsg(stream, &result, "0x%08X\n", status);
|
||
90 | } |
||
91 | |||
92 | ddf34c3d | Thomas Schöpping | aosUtInfoMsg(stream,"driver object memory footprint: %u bytes\n", sizeof(BQ241xxDriver)); |
93 | e545e620 | Thomas Schöpping | |
94 | return result;
|
||
95 | } |
||
96 | |||
97 | ddf34c3d | Thomas Schöpping | #endif /* (AMIROOS_CFG_TESTS_ENABLE == true) && defined(AMIROLLD_CFG_BQ241xx) && (AMIROLLD_CFG_BQ241xx == 1) */ |