diff options
| author | William Wilgus <me.theuser@yahoo.com> | 2018-10-30 13:56:36 -0400 |
|---|---|---|
| committer | William Wilgus <me.theuser@yahoo.com> | 2018-10-30 14:16:01 -0400 |
| commit | 74fe5203d06aee3ad3498fa9164762cfa1efa3d5 (patch) | |
| tree | f153b31312cd5d3a3863f013d2908064fb244ca1 /apps/plugins/lua/include_lua/pcm.lua | |
| parent | 2e1ca200974ca4c60e651c199ec5883b308ac38b (diff) | |
| download | rockbox-74fe5203d06aee3ad3498fa9164762cfa1efa3d5.zip rockbox-74fe5203d06aee3ad3498fa9164762cfa1efa3d5.tar.gz rockbox-74fe5203d06aee3ad3498fa9164762cfa1efa3d5.tar.bz2 rockbox-74fe5203d06aee3ad3498fa9164762cfa1efa3d5.tar.xz | |
lua consolidate pcm_ functions
The way to call the pcm functions has changed
rb.pcm("option", var)
rb.pcm_set_frequency(freq) = becomes rb.pcm("pcmsetfrequency", freq)
added pcm.lua to the includes for conversion to old functions
if your script is broken by this change you simply add
`require("pcm")` to the top for the old functionality
added rb.pcm("calculatepeaks")
Change-Id: I092057b0c0b5575e567862661f122da1ca2680e8
Diffstat (limited to 'apps/plugins/lua/include_lua/pcm.lua')
| -rw-r--r-- | apps/plugins/lua/include_lua/pcm.lua | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/apps/plugins/lua/include_lua/pcm.lua b/apps/plugins/lua/include_lua/pcm.lua new file mode 100644 index 0000000..318669b --- /dev/null +++ b/apps/plugins/lua/include_lua/pcm.lua @@ -0,0 +1,36 @@ +--[[ Lua RB pcm Operations +/*************************************************************************** + * __________ __ ___. + * Open \______ \ ____ ____ | | _\_ |__ _______ ___ + * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / + * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < + * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ + * \/ \/ \/ \/ \/ + * $Id$ + * + * Copyright (C) 2018 William Wilgus + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY + * KIND, either express or implied. + * + ****************************************************************************/ +]] + +-- [[ conversion to old style pcm_ functions ]] +if not rb.pcm then rb.splash(rb.HZ, "No Support!") return nil end + +rb.pcm_apply_settings = function() rb.pcm("applysettings") end +rb.pcm_set_frequency = function(freq) rb.pcm("setfrequency", freq) end +rb.pcm_play_pause = function(bplay) rb.pcm("playpause", bplay) end +rb.pcm_play_stop = function() rb.pcm("playstop") end +rb.pcm_play_lock = function() rb.pcm("playlock") end +rb.pcm_play_unlock = function() rb.pcm("playunlock") end +rb.pcm_is_playing = function() return rb.pcm("isplaying") end +rb.pcm_is_paused = function() return rb.pcm("ispaused") end +rb.pcm_calculate_peaks = function() return rb.pcm("calculatepeaks") end +rb.pcm_get_bytes_waiting = function() return rb.pcm("getbyteswaiting") end |