mirror of
https://github.com/opentx/opentx.git
synced 2025-07-24 00:35:18 +03:00
Differentiate message despite so little space :s (#4850)
This commit is contained in:
parent
50cb102a34
commit
6dd8524ea5
1 changed files with 9 additions and 1 deletions
|
@ -203,8 +203,16 @@ const char * sportUpdatePowerOn(ModuleIndex module)
|
||||||
if (!IS_FRSKY_SPORT_PROTOCOL()) {
|
if (!IS_FRSKY_SPORT_PROTOCOL()) {
|
||||||
return TR("Not responding", "Not S.Port 2");
|
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");
|
return TR("Not responding", "Module not responding");
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
const char * sportUpdateReqVersion()
|
const char * sportUpdateReqVersion()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue