mirror of
https://github.com/opentx/opentx.git
synced 2025-07-20 06:45:10 +03:00
Refactored luaGetValue(), my previous fix was incorrect.
This commit is contained in:
parent
cfa25ab030
commit
d9c1bf767f
1 changed files with 13 additions and 24 deletions
|
@ -102,36 +102,25 @@ static int luaGetValue(lua_State *L)
|
||||||
lua_pushnumber(L, double(frskyData.hub.baroAltitude)/100);
|
lua_pushnumber(L, double(frskyData.hub.baroAltitude)/100);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
else if (!strcmp(what, "latitude")) {
|
else if (frskyData.hub.gpsFix) {
|
||||||
if (frskyData.hub.gpsFix)
|
if (!strcmp(what, "latitude")) {
|
||||||
lua_pushnumber(L, gpsToDouble(frskyData.hub.gpsLatitudeNS=='S', frskyData.hub.gpsLatitude_bp, frskyData.hub.gpsLatitude_ap));
|
lua_pushnumber(L, gpsToDouble(frskyData.hub.gpsLatitudeNS=='S', frskyData.hub.gpsLatitude_bp, frskyData.hub.gpsLatitude_ap));
|
||||||
else
|
|
||||||
lua_pushnil(L);
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
else if (!strcmp(what, "longitude")) {
|
else if (!strcmp(what, "longitude")) {
|
||||||
if (frskyData.hub.gpsFix)
|
|
||||||
lua_pushnumber(L, gpsToDouble(frskyData.hub.gpsLongitudeEW=='W', frskyData.hub.gpsLongitude_bp, frskyData.hub.gpsLongitude_ap));
|
lua_pushnumber(L, gpsToDouble(frskyData.hub.gpsLongitudeEW=='W', frskyData.hub.gpsLongitude_bp, frskyData.hub.gpsLongitude_ap));
|
||||||
else
|
|
||||||
lua_pushnil(L);
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
else if (!strcmp(what, "pilot latitude")) {
|
else if (!strcmp(what, "pilot latitude")) {
|
||||||
if (frskyData.hub.gpsFix)
|
|
||||||
lua_pushnumber(L, pilotLatitude);
|
lua_pushnumber(L, pilotLatitude);
|
||||||
else
|
|
||||||
lua_pushnil(L);
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
else if (!strcmp(what, "pilot longitude")) {
|
else if (!strcmp(what, "pilot longitude")) {
|
||||||
if (frskyData.hub.gpsFix)
|
|
||||||
lua_pushnumber(L, pilotLongitude);
|
lua_pushnumber(L, pilotLongitude);
|
||||||
else
|
|
||||||
lua_pushnil(L);
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
lua_pushnil(L);
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue