File tree 5 files changed +15
-5
lines changed
5 files changed +15
-5
lines changed Original file line number Diff line number Diff line change @@ -191,6 +191,7 @@ set(COMPONENT_ADD_INCLUDEDIRS
191
191
libraries/HTTPClient/src
192
192
libraries/HTTPUpdate/src
193
193
libraries/NetBIOS/src
194
+ libraries/PolledTimeout/src
194
195
libraries/Preferences/src
195
196
libraries/Schedule/src
196
197
libraries/SD_MMC/src
Original file line number Diff line number Diff line change @@ -160,7 +160,7 @@ void yield()
160
160
161
161
void delay (uint32_t ms )
162
162
{
163
- vTaskDelay (ms / portTICK_PERIOD_MS );
163
+ vTaskDelay (ms / portTICK_PERIOD_MS );
164
164
yield_completed ();
165
165
}
166
166
Original file line number Diff line number Diff line change
1
+ name =PolledTimeout
2
+ version =1.0
3
+ author =
4
+ maintainer =
5
+ sentence =
6
+ paragraph =
7
+ category =Other
8
+ url =
9
+ architectures =esp32
File renamed without changes.
Original file line number Diff line number Diff line change 1
1
#include " Schedule.h"
2
- #include " PolledTimeout/PolledTimeout.h "
3
- #include " Ticker.h"
2
+ #include < PolledTimeout.h >
3
+ #include < Ticker.h>
4
4
#ifdef ESP8266
5
- #include " interrupts.h"
6
- #include " coredecls.h"
5
+ #include < interrupts.h>
6
+ #include < coredecls.h>
7
7
#else
8
8
#include < mutex>
9
9
#endif
You can’t perform that action at this time.
0 commit comments