diff --git a/drivers/Ticker.h b/drivers/Ticker.h index 917eb7c84b..e8bacfa6a7 100644 --- a/drivers/Ticker.h +++ b/drivers/Ticker.h @@ -100,6 +100,11 @@ public: * * @param func pointer to the function to be called * @param t the time between calls in micro-seconds + * + * @note setting @a t to a value shorter that it takes to process the ticker callback + * will cause the system to hang. Ticker callback will be called constantly with no time + * for threads scheduling. + * */ void attach_us(Callback func, us_timestamp_t t) { _function = func;