We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b45fe6 commit 19d33e8Copy full SHA for 19d33e8
hal/architecture/ESP8266/MyHwESP8266.cpp
@@ -32,7 +32,10 @@ bool hwInit(void)
32
EEPROM.begin(EEPROM_size);
33
// register _process() to be called at most every 1us,
34
// at every loop() or yield()
35
- return schedule_recurrent_function_us([](){ _process(); return true; }, 1);
+ return schedule_recurrent_function_us([]() {
36
+ _process();
37
+ return true;
38
+ }, 1);
39
}
40
41
void hwReadConfigBlock(void *buf, void *addr, size_t length)
0 commit comments