amiro-os / test / periphery-lld / button_v1 / aos_test_button.c @ 35880232
History | View | Annotate | Download (4.359 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_button.h> |
21 |
|
22 |
#if (AMIROOS_CFG_TESTS_ENABLE == true) || defined(__DOXYGEN__) |
23 |
|
24 |
/******************************************************************************/
|
25 |
/* LOCAL DEFINITIONS */
|
26 |
/******************************************************************************/
|
27 |
|
28 |
#define INTERRUPT_EVENT_ID 1 |
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 |
/**
|
51 |
* @brief Button test function.
|
52 |
*
|
53 |
* @param[in] stream Stream for input/output.
|
54 |
* @param[in] test Test object.
|
55 |
*
|
56 |
* @return Test result value.
|
57 |
*/
|
58 |
aos_testresult_t aosTestButtonFunc(BaseSequentialStream* stream, const aos_test_t* test)
|
59 |
{ |
60 |
aosDbgCheck(test->data != NULL &&
|
61 |
((aos_test_buttondata_t*)test->data)->button != NULL &&
|
62 |
((aos_test_buttondata_t*)test->data)->evtsource != NULL);
|
63 |
|
64 |
// local variables
|
65 |
aos_testresult_t result = {0, 0}; |
66 |
int32_t status; |
67 |
unsigned int count = 0; |
68 |
button_lld_state_t bstate; |
69 |
event_listener_t evtlistener; |
70 |
aos_timestamp_t tcurrent, tend; |
71 |
|
72 |
chprintf(stream, "test interrupts for ten seconds...\n");
|
73 |
chEvtRegister(((aos_test_buttondata_t*)test->data)->evtsource, &evtlistener, INTERRUPT_EVENT_ID); |
74 |
status = APAL_STATUS_OK; |
75 |
aosSysGetUptime(&tend); |
76 |
tend += 10 * MICROSECONDS_PER_SECOND;
|
77 |
do {
|
78 |
const eventmask_t emask = chEvtWaitOneTimeout(EVENT_MASK(INTERRUPT_EVENT_ID), chTimeUS2I(MICROSECONDS_PER_SECOND));
|
79 |
const eventflags_t eflags = chEvtGetAndClearFlags(&evtlistener);
|
80 |
status |= button_lld_get(((aos_test_buttondata_t*)test->data)->button, &bstate); |
81 |
if (emask == EVENT_MASK(INTERRUPT_EVENT_ID) &&
|
82 |
eflags == ((aos_test_buttondata_t*)test->data)->evtflags) { |
83 |
// a correct event was detected
|
84 |
chprintf(stream, "\t\tinterrupt detected: %s\n", (bstate == BUTTON_LLD_STATE_PRESSED) ? "pressed" : "released"); |
85 |
++count; |
86 |
} else {
|
87 |
// no button event was detected (usually timeout)
|
88 |
chprintf(stream, "\t\twaiting for event...\n");
|
89 |
} |
90 |
aosSysGetUptime(&tcurrent); |
91 |
} while (tcurrent < tend);
|
92 |
chEvtUnregister(((aos_test_buttondata_t*)test->data)->evtsource, &evtlistener); |
93 |
if (status == APAL_STATUS_OK && count > 0) { |
94 |
aosTestPassedMsg(stream, &result, "%u events detected\n", count);
|
95 |
} else {
|
96 |
aosTestFailedMsg(stream, &result, "0x%08X; %u\n", status, count);
|
97 |
} |
98 |
|
99 |
aosTestInfoMsg(stream,"driver object memory footprint: %u bytes\n", sizeof(ButtonDriver)); |
100 |
|
101 |
return result;
|
102 |
} |
103 |
|
104 |
#endif /* (AMIROOS_CFG_TESTS_ENABLE == true) */ |