Statistics
| Branch: | Tag: | Revision:

amiro-os / test / periphery-lld / button_v1 / aos_test_button.c @ 4c72a54c

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