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

Differentiate message despite so little space :s (#4850)

This commit is contained in:
3djc 2017-04-25 12:08:20 +02:00 committed by Bertrand Songis
parent 50cb102a34
commit 6dd8524ea5

View file

@ -203,8 +203,16 @@ const char * sportUpdatePowerOn(ModuleIndex module)
if (!IS_FRSKY_SPORT_PROTOCOL()) {
return TR("Not responding", "Not S.Port 2");
}
#if defined(PCBX7)
if (IS_PCBREV_40()) {
return TR("Bottom pin no resp", "Bottom pin not responding");
}
else {
return TR("Module pin no resp", "Module pin not responding");
}
#else
return TR("Not responding", "Module not responding");
#endif
}
const char * sportUpdateReqVersion()