summaryrefslogtreecommitdiff
path: root/apps/plugins/lua_scripts/memchk.lua
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/lua_scripts/memchk.lua')
-rw-r--r--apps/plugins/lua_scripts/memchk.lua32
1 files changed, 32 insertions, 0 deletions
diff --git a/apps/plugins/lua_scripts/memchk.lua b/apps/plugins/lua_scripts/memchk.lua
new file mode 100644
index 0000000000..f7619fe3dd
--- /dev/null
+++ b/apps/plugins/lua_scripts/memchk.lua
@@ -0,0 +1,32 @@
1--[[
2 __________ __ ___.
3 Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 \/ \/ \/ \/ \/
8 $Id$
9 Example Lua Memory Use
10 Copyright (C) 2020 William Wilgus
11 This program is free software; you can redistribute it and/or
12 modify it under the terms of the GNU General Public License
13 as published by the Free Software Foundation; either version 2
14 of the License, or (at your option) any later version.
15 This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 KIND, either express or implied.
17]]--
18
19local used, allocd, free = rb.mem_stats()
20local lu = collectgarbage("count")
21local fmt = function(t, v) return string.format("%s: %d Kb\n", t, v /1024) end
22
23-- this is how lua recommends to concat strings rather than ..
24local s_t = {}
25s_t[1] = "rockbox:\n"
26s_t[2] = fmt("Used ", used)
27s_t[3] = fmt("Allocd ", allocd)
28s_t[4] = fmt("Free ", free)
29s_t[5] = "\nlua:\n"
30s_t[6] = fmt("Used", lu * 1024)
31s_t[7] = "\n\nNote that the rockbox used count is a high watermark"
32rb.splash_scroller(10 * rb.HZ, table.concat(s_t))