File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -386,7 +386,7 @@ void WiFiClass::setTimeout(unsigned long timeout)
386
386
_timeout = timeout;
387
387
}
388
388
389
- void WiFiClass::setFeedWatchdogFunc (FeedHostProcessorWatchdogFuncPointer func)
389
+ void WiFiClass::setFeedWatchdogFunc (voidPrtFuncPtr func)
390
390
{
391
391
_feed_watchdog_func = func;
392
392
}
Original file line number Diff line number Diff line change @@ -37,15 +37,15 @@ extern "C" {
37
37
#include " WiFiServer.h"
38
38
#include " WiFiStorage.h"
39
39
40
- typedef void (*FeedHostProcessorWatchdogFuncPointer )();
40
+ typedef void (*voidPrtFuncPtr )();
41
41
42
42
class WiFiClass
43
43
{
44
44
private:
45
45
46
46
static void init ();
47
47
unsigned long _timeout;
48
- FeedHostProcessorWatchdogFuncPointer _feed_watchdog_func;
48
+ voidPrtFuncPtr _feed_watchdog_func;
49
49
public:
50
50
WiFiClass ();
51
51
@@ -279,7 +279,7 @@ class WiFiClass
279
279
280
280
void setTimeout (unsigned long timeout);
281
281
282
- void setFeedWatchdogFunc (FeedHostProcessorWatchdogFuncPointer func);
282
+ void setFeedWatchdogFunc (voidPrtFuncPtr func);
283
283
void feedWatchdog ();
284
284
};
285
285
You can’t perform that action at this time.
0 commit comments