diff --git a/tests/event_periodic_callback/Makefile b/tests/event_periodic_callback/Makefile new file mode 100644 index 000000000000..d9b69a6e4afa --- /dev/null +++ b/tests/event_periodic_callback/Makefile @@ -0,0 +1,6 @@ +include ../Makefile.tests_common + +USEMODULE += event_periodic_callback +USEMODULE += ztimer_msec + +include $(RIOTBASE)/Makefile.include diff --git a/tests/event_periodic_callback/Makefile.ci b/tests/event_periodic_callback/Makefile.ci new file mode 100644 index 000000000000..b9ff27537587 --- /dev/null +++ b/tests/event_periodic_callback/Makefile.ci @@ -0,0 +1,3 @@ +BOARD_INSUFFICIENT_MEMORY := \ + nucleo-l011k4 \ + # diff --git a/tests/event_periodic_callback/main.c b/tests/event_periodic_callback/main.c new file mode 100644 index 000000000000..fb07e69f55e3 --- /dev/null +++ b/tests/event_periodic_callback/main.c @@ -0,0 +1,49 @@ +/* + * Copyright (C) 2022 ML!PA Consulting GmbH + * + * 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 Callback test application + * + * @author Benjamin Valentin + * + * @} + */ + +#include + +#include "event/periodic_callback.h" + +static void _event_cb(void *ctx) +{ + puts(ctx); +} + +int main(void) +{ + event_periodic_callback_t a, b, c; + + event_periodic_callback_init(&a, ZTIMER_MSEC, EVENT_PRIO_MEDIUM, _event_cb, "event A"); + event_periodic_callback_init(&b, ZTIMER_MSEC, EVENT_PRIO_MEDIUM, _event_cb, "event B"); + event_periodic_callback_init(&c, ZTIMER_MSEC, EVENT_PRIO_MEDIUM, _event_cb, "event C"); + + event_periodic_callback_set_count(&a, 6); + event_periodic_callback_set_count(&b, 3); + event_periodic_callback_set_count(&c, 2); + + event_periodic_callback_start(&a, 502); + event_periodic_callback_start(&b, 1001); + event_periodic_callback_start(&c, 1500); + + ztimer_sleep(ZTIMER_MSEC, 3020); + + return 0; +} diff --git a/tests/event_periodic_callback/tests/01-run.py b/tests/event_periodic_callback/tests/01-run.py new file mode 100755 index 000000000000..c1f72aca4ce8 --- /dev/null +++ b/tests/event_periodic_callback/tests/01-run.py @@ -0,0 +1,22 @@ +#!/usr/bin/env python3 + +import sys +from testrunner import run + + +def testfunc(child): + child.expect_exact("event A") + child.expect_exact("event B") + child.expect_exact("event A") + child.expect_exact("event C") + child.expect_exact("event A") + child.expect_exact("event B") + child.expect_exact("event A") + child.expect_exact("event A") + child.expect_exact("event C") + child.expect_exact("event B") + child.expect_exact("event A") + + +if __name__ == "__main__": + sys.exit(run(testfunc))