-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Add Functional and Scheduled callback option to Ticker #4062
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,6 +24,8 @@ | |
|
||
#include <stdint.h> | ||
#include <stddef.h> | ||
#include <functional> | ||
#include <Schedule.h> | ||
|
||
extern "C" { | ||
typedef struct _ETSTIMER_ ETSTimer; | ||
|
@@ -34,17 +36,22 @@ class Ticker | |
public: | ||
Ticker(); | ||
~Ticker(); | ||
typedef void (*callback_t)(void); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It might be better to keep this definition for compatibility. I ran grep on my sketchbook and found a few uses of |
||
|
||
typedef void (*callback_with_arg_t)(void*); | ||
typedef std::function<void(void)> TickerFunction; | ||
|
||
void attach(float seconds, callback_t callback) | ||
void attach(float seconds, TickerFunction tf, bool reqSchedule = false) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I suggest making the case for the scheduled function more explicit. E.g. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Also, why did I would expect to see the product of {attach, once} x {sec, msec} x {no arg, arg} x {normal, scheduled}, i.e. 16 functions. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There's no point in repeatedly Just asking because I'm using the esp8266's interface in my esp32's version of the Ticker lib. I like the more explicit version! |
||
{ | ||
_attach_ms(seconds * 1000, true, reinterpret_cast<callback_with_arg_t>(callback), 0); | ||
internalTicker = tf; | ||
scheduleTicker = reqSchedule; | ||
attach(seconds, internalCallback, (void*)this); | ||
} | ||
|
||
void attach_ms(uint32_t milliseconds, callback_t callback) | ||
void attach_ms(uint32_t milliseconds, TickerFunction tf, bool reqSchedule = false) | ||
{ | ||
_attach_ms(milliseconds, true, reinterpret_cast<callback_with_arg_t>(callback), 0); | ||
internalTicker = tf; | ||
scheduleTicker = reqSchedule; | ||
attach_ms(milliseconds, internalCallback, (void*)this); | ||
} | ||
|
||
template<typename TArg> | ||
|
@@ -66,14 +73,18 @@ class Ticker | |
_attach_ms(milliseconds, true, reinterpret_cast<callback_with_arg_t>(callback), arg32); | ||
} | ||
|
||
void once(float seconds, callback_t callback) | ||
void once(float seconds, TickerFunction tf, bool reqSchedule = false) | ||
{ | ||
_attach_ms(seconds * 1000, false, reinterpret_cast<callback_with_arg_t>(callback), 0); | ||
internalTicker = tf; | ||
scheduleTicker = reqSchedule; | ||
once(seconds, internalCallback, (void*)this); | ||
} | ||
|
||
void once_ms(uint32_t milliseconds, callback_t callback) | ||
void once_ms(uint32_t milliseconds, TickerFunction tf, bool reqSchedule = false) | ||
{ | ||
_attach_ms(milliseconds, false, reinterpret_cast<callback_with_arg_t>(callback), 0); | ||
internalTicker = tf; | ||
scheduleTicker = reqSchedule; | ||
once_ms(milliseconds, internalCallback, (void*)this); | ||
} | ||
|
||
template<typename TArg> | ||
|
@@ -96,10 +107,14 @@ class Ticker | |
|
||
protected: | ||
void _attach_ms(uint32_t milliseconds, bool repeat, callback_with_arg_t callback, uint32_t arg); | ||
static void internalCallback (void* arg); | ||
|
||
|
||
protected: | ||
ETSTimer* _timer; | ||
TickerFunction internalTicker = nullptr; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For consistency with the rest of this file, please use snake_case for member and function names, and prefix the member names with an underscore. Also, perhaps |
||
bool scheduleTicker = false; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Instead of introducing a flag, can we do something like this for the "scheduled" case? internalTicker = std::bind(schedule_function, tf); and internalTicker = tf; for the normal (not scheduled)? |
||
|
||
}; | ||
|
||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This header file is probably only needed in Ticker.cpp