1
0
Fork 0
mirror of https://github.com/EdgeTX/edgetx.git synced 2025-07-24 00:35:14 +03:00
This commit is contained in:
bsongis 2015-07-24 10:07:11 +02:00
parent 7e7a762617
commit 7e44eab63c

View file

@ -787,11 +787,15 @@ QString LogicalSwitchData::toString(const ModelData & model, const GeneralSettin
res = "|" + res + "|";
else if (func == LS_FN_DAPOS)
res = "|d(" + res + ")|";
else if (func == LS_FN_DPOS) result = "d(" + res + ")";
else if (func == LS_FN_DPOS)
res = "d(" + res + ")";
result += res;
if (func == LS_FN_APOS || func == LS_FN_VPOS || func == LS_FN_DPOS || func == LS_FN_DAPOS)
result += " > ";
else if (func == LS_FN_EQUAL || func == LS_FN_VEQUAL)
result += " = ";
else if (func == LS_FN_NEQUAL)
result += " != ";
else if (func == LS_FN_ANEG || func == LS_FN_VNEG)
result += " < ";
else if (func == LS_FN_VALMOSTEQUAL)