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

Update api_general.cpp

This commit is contained in:
Lucas1188 2021-05-10 21:46:15 -06:00
parent ef90933f66
commit c8bd18441a

View file

@ -1532,6 +1532,19 @@ static int luaGetUsage(lua_State * L)
return 1;
}
/*luadoc
@function getAvailableMemory()
Get available memory remaining in the Heap for Lua.
@retval usage (number) a value returned in b
*/
static int luaGetAvailableMemory(lua_State * L)
{
lua_pushunsigned(L, availableMemory());
return 1;
}
/*luadoc
@function resetGlobalTimer([type])
@ -1759,6 +1772,7 @@ const luaL_Reg opentxLib[] = {
{ "chdir", luaChdir },
{ "loadScript", luaLoadScript },
{ "getUsage", luaGetUsage },
{ "getAvailableMemory", luaGetAvailableMemory },
{ "resetGlobalTimer", luaResetGlobalTimer },
#if LCD_DEPTH > 1 && !defined(COLORLCD)
{ "GREY", luaGrey },