Fix regression for nrg and dsp interface delays

This commit is contained in:
andrethomas 2018-11-01 21:41:42 +02:00
parent 23e18425c4
commit b2f7427d17
2 changed files with 0 additions and 2 deletions

View File

@ -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;
}

View File

@ -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;
}