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:
parent
ef90933f66
commit
c8bd18441a
1 changed files with 14 additions and 0 deletions
|
@ -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 },
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue