1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-17 05:15:18 +03:00

Compilation fixes

This commit is contained in:
Bertrand Songis 2019-03-20 16:32:58 +01:00
parent 683a737c99
commit 04ba9e5c68
32 changed files with 110 additions and 71 deletions

View file

@ -89,9 +89,11 @@ void sendSynchronousPulses()
{
for (uint8_t module = 0; module < NUM_MODULES; module++) {
if (isModuleSynchronous(module) && setupPulses(module)) {
#if defined(PCBHORUS) || defined(PCBTARAHIS)
if (module == INTERNAL_MODULE)
intmoduleSendNextFrame();
else
#endif
if (module == EXTERNAL_MODULE)
extmoduleSendNextFrame();
}
}