Merge pull request #4242 from andrethomas/development

Fix regression for nrg and dsp interface delays
This commit is contained in:
Theo Arends 2018-11-01 20:47:20 +01:00 committed by GitHub
commit 04238e5aa5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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;
}