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

Merge pull request #15075 from benpicco/evtimer_warn

sys/evtimer: copy warning from xtimer
This commit is contained in:
Alexandre Abadie 2020-09-24 16:28:44 +02:00 committed by GitHub
commit f25398ae25
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -78,6 +78,10 @@ typedef struct {
/**
* @brief Initializes an event timer
*
* @warning BEWARE! Callbacks from evtimer_init() are being executed
* in interrupt context.
* DON'T USE THIS FUNCTION unless you know *exactly* what that means.
*
* @param[in] evtimer An event timer
* @param[in] handler An event handler function
*/