1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/tests/periph_timer_periodic/main.c

132 lines
3.2 KiB
C
Raw Normal View History

/*
* Copyright (C) 2020 Beuth Hochschule für Technik Berlin
*
* This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level
* directory for more details.
*/
/**
* @ingroup tests
* @{
*
* @file
* @brief Periodic timer test application
*
* @author Benjamin Valentin <benpicco@beuth-hochschule.de>
*
* @}
*/
#include <stdio.h>
#include <stdint.h>
#include "board.h"
#include "macros/units.h"
#include "fmt.h"
#include "mutex.h"
#include "periph/timer.h"
#include "test_utils/expect.h"
/* recreate logic to obtain valid XTIMER_DEV used in xtimer.h, but don't include
* xtimer.h, as this leads to issues on some boards when the xtimer module is
* not used */
#ifndef XTIMER_DEV
#define XTIMER_DEV TIMER_DEV(0)
#endif
#ifndef XTIMER_HZ
#define XTIMER_HZ MHZ(1)
#endif
/* We use the timer used for xtimer with the frequency used by xtimer here
* to make sure we have a known valid timer configuration.
*
* DO NOT USE any low-level timer functions demonstrated here when xtimer
* is used with that timer!
* Configure a separate timer, XTIMER_DEV is usually 'owned' by xtimer, but
* as xtimer is not used in this test, we can use it and the fact that every board
* provides a configuration for it.
*/
#define TIMER_CYCL (XTIMER_DEV)
#define CYCLE_MS (25UL)
#define CYCLES_MAX (10)
#ifdef TIMER_CHANNEL_NUMOF
#define MAX_CHANNELS (TIMER_CHANNEL_NUMOF)
#else
#define MAX_CHANNELS (10)
#endif
static unsigned count[MAX_CHANNELS];
static void cb(void *arg, int chan)
{
unsigned c = count[chan]++;
print_str("[");
print_u32_dec(chan);
print_str("] tick\n");
if (c > CYCLES_MAX) {
timer_stop(TIMER_CYCL);
mutex_unlock(arg);
}
}
static const char* _print_ok(int chan, bool *succeeded)
{
if (chan == 0 && count[chan] > 0) {
return "OK";
}
if (chan > 0 && count[chan] == 0) {
return "OK";
}
*succeeded = false;
return "ERROR";
}
int main(void)
{
mutex_t lock = MUTEX_INIT_LOCKED;
const unsigned long timer_hz = XTIMER_HZ;
const unsigned steps = (CYCLE_MS * timer_hz) / 1000;
printf("\nRunning Timer %d at %lu Hz.\n", TIMER_CYCL, timer_hz);
printf("One counter cycle is %u ticks or %lu ms\n", steps, CYCLE_MS);
puts("Will print 'tick' every cycle.\n");
expect(timer_init(TIMER_CYCL, timer_hz, cb, &lock) == 0);
puts("TEST START");
/* Only the first channel should trigger and reset the counter */
/* If subsequent channels trigger this is an error. */
unsigned channel_numof = 1;
for(unsigned i = 1; i < MAX_CHANNELS; i++) {
if(!timer_set_periodic(TIMER_CYCL, i, (1 + i) * steps, TIM_FLAG_RESET_ON_SET)) {
channel_numof = i;
break;
}
}
timer_set_periodic(TIMER_CYCL, 0, steps, TIM_FLAG_RESET_ON_MATCH);
mutex_lock(&lock);
puts("\nCycles:");
bool succeeded = true;
for (unsigned i = 0; i < channel_numof; ++i) {
printf("channel %u = %02u\t[%s]\n", i, count[i], _print_ok(i, &succeeded));
}
if (succeeded) {
puts("TEST SUCCEEDED");
} else {
puts("TEST FAILED");
}
return 0;
}