mirror of https://github.com/arendst/Tasmota.git
Merge pull request #4242 from andrethomas/development
Fix regression for nrg and dsp interface delays
This commit is contained in:
commit
04238e5aa5
|
@ -117,7 +117,6 @@ boolean XdspCall(byte Function)
|
|||
boolean result = false;
|
||||
|
||||
for (byte x = 0; x < xdsp_present; x++) {
|
||||
if (global_state.wifi_down) { delay(DRIVER_BOOT_DELAY); }
|
||||
result = xdsp_func_ptr[x](Function);
|
||||
if (result) break;
|
||||
}
|
||||
|
|
|
@ -90,7 +90,6 @@ int XnrgCall(byte Function)
|
|||
int result = 0;
|
||||
|
||||
for (byte x = 0; x < xnrg_present; x++) {
|
||||
if (global_state.wifi_down) { delay(DRIVER_BOOT_DELAY); }
|
||||
result = xnrg_func_ptr[x](Function);
|
||||
if (result) break;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue