1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-17 13:25:20 +03:00

Cosmetics

This commit is contained in:
Bertrand Songis 2019-02-08 14:59:08 +01:00
parent debc43ab34
commit 0da578cad5
5 changed files with 13 additions and 13 deletions

View file

@ -83,12 +83,10 @@ void sendSynchronousPulses()
for (uint8_t module = 0; module < NUM_MODULES; module++) {
uint8_t protocol = moduleSettings[module].protocol;
if (isProtocolSynchronous(protocol) && setupPulses(module)) {
if (module == INTERNAL_MODULE) {
if (module == INTERNAL_MODULE)
intmoduleSendNextFrame();
}
else {
// TODO
}
else
extmoduleSendNextFrame();
}
}
}