Skip to content

Commit 19d33e8

Browse files
committed
fix style by review
1 parent 5b45fe6 commit 19d33e8

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

hal/architecture/ESP8266/MyHwESP8266.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,10 @@ bool hwInit(void)
3232
EEPROM.begin(EEPROM_size);
3333
// register _process() to be called at most every 1us,
3434
// at every loop() or yield()
35-
return schedule_recurrent_function_us([](){ _process(); return true; }, 1);
35+
return schedule_recurrent_function_us([]() {
36+
_process();
37+
return true;
38+
}, 1);
3639
}
3740

3841
void hwReadConfigBlock(void *buf, void *addr, size_t length)

0 commit comments

Comments
 (0)