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

event_periodic_callback: add convenience wrapper for periodic callbacks

This commit is contained in:
Benjamin Valentin 2022-09-15 17:48:39 +02:00
parent b2bcfabcfb
commit 00c11c3f9d
2 changed files with 132 additions and 0 deletions

View File

@ -559,6 +559,12 @@ ifneq (,$(filter asymcute,$(USEMODULE)))
USEMODULE += event_callback
endif
ifneq (,$(filter event_periodic_callback,$(USEMODULE)))
USEMODULE += event_callback
USEMODULE += event_periodic
USEMODULE += event_thread
endif
ifneq (,$(filter emcute,$(USEMODULE)))
USEMODULE += core_thread_flags
USEMODULE += sock_udp

View File

@ -0,0 +1,126 @@
/*
* 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 sys_event
* @brief Provides functionality to trigger periodic event callbacks
*
* This provides convenience functions to trigger periodic event callbacks
* executed by the event thread.
*
* @{
*
* @file
* @brief Event Periodic Callback API
*
* @author Benjamin Valentin <benjamin.valentin@ml-pa.com>
*
*/
#ifndef EVENT_PERIODIC_CALLBACK_H
#define EVENT_PERIODIC_CALLBACK_H
#include "event/callback.h"
#include "event/periodic.h"
#include "event/thread.h"
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief Periodic Callback Event structure
*/
typedef struct {
event_periodic_t periodic; /**< periodic event portion */
event_callback_t event; /**< callback event portion */
} event_periodic_callback_t;
/**
* @brief Initialize a periodic callback event
*
* @note: On init the periodic event is to to run forever.
*
* @param[in] event event_periodic_callback object to initialize
* @param[in] clock the clock to configure this timer on
* @param[in] queue queue that the timed-out event will be added to
* @param[in] callback callback to set up
* @param[in] arg callback argument to set up
*/
static inline void event_periodic_callback_init(event_periodic_callback_t *event,
ztimer_clock_t *clock, event_queue_t *queue,
void (*callback)(void *), void *arg)
{
memset(&event->event, 0, sizeof(event->event));
event->event.super.handler = _event_callback_handler;
event->event.callback = callback;
event->event.arg = arg;
event_periodic_init(&event->periodic, clock, queue, &event->event.super);
}
/**
* @brief Starts a periodic callback event
*
* If the event is already started, it's interval will be updated and it
* will be scheduled with the new interval.
*
* This will make the event as configured in @p event be triggered
* at every interval ticks (based on event->periodic.clock).
*
* @note: the used event_periodic struct must stay valid until after the timeout
* event has been processed!
*
* @note: this function does not touch the current count value.
*
* @param[in] event event_periodic_callback context object to use
* @param[in] interval period length for the event
*/
static inline void event_periodic_callback_start(event_periodic_callback_t *event,
uint32_t interval)
{
event_periodic_start(&event->periodic, interval);
}
/**
* @brief Set the amount of times the periodic callback event should repeat itself.
*
* @param[in] event event_periodic_callback context object to use
* @param[in] count times the event should repeat itself,
* EVENT_PERIODIC_FOREVER to run for ever.
*/
static inline void event_periodic_callback_set_count(event_periodic_callback_t *event,
uint32_t count)
{
event_periodic_set_count(&event->periodic, count);
}
/**
* @brief Stop a periodic callback event
*
* Calling this function will cancel the timeout by removing its underlying
* timer. If the timer has already fired before calling this function, the
* connected event will be put already into the given event queue and this
* function does not have any effect.
*
* @note Calling this function does not touch event_periodic->count, if the
* periodic event was not set to run for ever and did run until expiration,
* then count will be != 0 after this function is called.
*
* @param[in] event event_periodic_callback context object to use
*/
static inline void event_periodic_callback_stop(event_periodic_callback_t *event)
{
event_periodic_stop(&event->periodic);
}
#ifdef __cplusplus
}
#endif
#endif /* EVENT_PERIODIC_CALLBACK_H */
/** @} */