mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
54 lines
1.1 KiB
C
54 lines
1.1 KiB
C
/*
|
|
* Copyright (C) 2020 Freie Universität 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 Test for the dbgpin module
|
|
*
|
|
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
|
|
*
|
|
* @}
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "dbgpin.h"
|
|
#include "xtimer.h"
|
|
|
|
#define TICK_MS 5U
|
|
|
|
int main(void)
|
|
{
|
|
printf("Found %i configured debug pin(s)\n", dbgpin_count());
|
|
|
|
for (unsigned p = 0; p < dbgpin_count(); p++) {
|
|
printf("Testing pin %u\n", p);
|
|
dbgpin_set(p);
|
|
xtimer_msleep(TICK_MS);
|
|
dbgpin_clear(p);
|
|
xtimer_msleep(TICK_MS);
|
|
dbgpin_toggle(p);
|
|
xtimer_msleep(2 * TICK_MS);
|
|
dbgpin_toggle(p);
|
|
xtimer_msleep(TICK_MS);
|
|
dbgpin_pulse(p);
|
|
xtimer_msleep(TICK_MS);
|
|
for (unsigned i = 2; i <= 5; i++) {
|
|
dbgpin_signal(p, i);
|
|
xtimer_msleep(TICK_MS);
|
|
}
|
|
}
|
|
|
|
puts("Test successful.");
|
|
|
|
return 0;
|
|
}
|