2007-08-13 22:31:11 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
2007-08-13 22:37:44 +00:00
|
|
|
* $Id$
|
2007-08-13 22:31:11 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 2007 by Peter D'Hoye
|
|
|
|
*
|
2008-06-28 18:10:04 +00:00
|
|
|
* 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.
|
2007-08-13 22:31:11 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include "plugin.h"
|
2008-05-04 13:21:07 +00:00
|
|
|
#include "helper.h"
|
2007-08-13 22:31:11 +00:00
|
|
|
|
2021-08-19 01:30:13 +00:00
|
|
|
int talk_val(long n, int unit, bool enqueue)
|
|
|
|
{
|
|
|
|
#define NODECIMALS 0
|
|
|
|
return rb->talk_value_decimal(n, unit, NODECIMALS, enqueue);
|
|
|
|
}
|
|
|
|
|
2020-07-24 22:14:32 +00:00
|
|
|
#ifdef HAVE_BACKLIGHT
|
2011-01-24 12:29:16 +00:00
|
|
|
/* Force the backlight on */
|
2009-01-16 10:34:40 +00:00
|
|
|
void backlight_force_on(void)
|
2011-01-24 12:29:16 +00:00
|
|
|
{
|
|
|
|
rb->backlight_set_timeout(0);
|
|
|
|
#if CONFIG_CHARGING
|
|
|
|
rb->backlight_set_timeout_plugged(0);
|
|
|
|
#endif /* CONFIG_CHARGING */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Turn off backlight timeout */
|
|
|
|
void backlight_ignore_timeout(void)
|
2007-08-13 22:31:11 +00:00
|
|
|
{
|
2007-11-26 09:59:45 +00:00
|
|
|
if (rb->global_settings->backlight_timeout > 0)
|
|
|
|
rb->backlight_set_timeout(0);
|
2007-08-13 22:31:11 +00:00
|
|
|
#if CONFIG_CHARGING
|
2007-11-26 09:59:45 +00:00
|
|
|
if (rb->global_settings->backlight_timeout_plugged > 0)
|
|
|
|
rb->backlight_set_timeout_plugged(0);
|
2007-08-15 12:42:09 +00:00
|
|
|
#endif /* CONFIG_CHARGING */
|
2007-11-29 23:55:58 +00:00
|
|
|
}
|
2007-08-13 22:31:11 +00:00
|
|
|
|
2007-11-29 23:55:58 +00:00
|
|
|
/* Reset backlight operation to its settings */
|
2009-01-16 10:34:40 +00:00
|
|
|
void backlight_use_settings(void)
|
2007-08-13 22:31:11 +00:00
|
|
|
{
|
|
|
|
rb->backlight_set_timeout(rb->global_settings->backlight_timeout);
|
|
|
|
#if CONFIG_CHARGING
|
2007-11-29 23:55:58 +00:00
|
|
|
rb->backlight_set_timeout_plugged(rb->global_settings->
|
|
|
|
backlight_timeout_plugged);
|
|
|
|
#endif /* CONFIG_CHARGING */
|
|
|
|
}
|
2022-11-24 04:00:29 +00:00
|
|
|
#else /* HAVE_BACKLIGHT */
|
|
|
|
/* DUMMY FUNCTIONS */
|
|
|
|
void backlight_force_on(void){}
|
|
|
|
void backlight_ignore_timeout(void){}
|
|
|
|
void backlight_use_settings(void){}
|
|
|
|
#endif /* !HAVE_BACKLIGHT */
|
2007-11-29 23:55:58 +00:00
|
|
|
|
2020-06-27 00:53:15 +00:00
|
|
|
#ifdef HAVE_SW_POWEROFF
|
|
|
|
static bool original_sw_poweroff_state = true;
|
|
|
|
|
|
|
|
void sw_poweroff_disable(void)
|
|
|
|
{
|
|
|
|
original_sw_poweroff_state = rb->button_get_sw_poweroff_state();
|
|
|
|
rb->button_set_sw_poweroff_state(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
void sw_poweroff_restore(void)
|
|
|
|
{
|
|
|
|
rb->button_set_sw_poweroff_state(original_sw_poweroff_state);
|
|
|
|
}
|
2022-11-24 04:00:29 +00:00
|
|
|
#else /* HAVE_SW_POWEROFF */
|
|
|
|
/* DUMMY FUNCTIONS */
|
|
|
|
void sw_poweroff_disable(void){}
|
|
|
|
void sw_poweroff_restore(void){}
|
|
|
|
#endif /* !HAVE_SW_POWEROFF */
|
2020-06-27 00:53:15 +00:00
|
|
|
|
2007-11-29 23:55:58 +00:00
|
|
|
#ifdef HAVE_REMOTE_LCD
|
|
|
|
/* Force the backlight on */
|
2009-01-16 10:34:40 +00:00
|
|
|
void remote_backlight_force_on(void)
|
2011-01-24 12:29:16 +00:00
|
|
|
{
|
|
|
|
rb->remote_backlight_set_timeout(0);
|
|
|
|
#if CONFIG_CHARGING
|
|
|
|
rb->remote_backlight_set_timeout_plugged(0);
|
|
|
|
#endif /* CONFIG_CHARGING */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Turn off backlight timeout */
|
|
|
|
void remote_backlight_ignore_timeout(void)
|
2007-11-29 23:55:58 +00:00
|
|
|
{
|
|
|
|
if (rb->global_settings->remote_backlight_timeout > 0)
|
|
|
|
rb->remote_backlight_set_timeout(0);
|
|
|
|
#if CONFIG_CHARGING
|
|
|
|
if (rb->global_settings->remote_backlight_timeout_plugged > 0)
|
|
|
|
rb->remote_backlight_set_timeout_plugged(0);
|
|
|
|
#endif /* CONFIG_CHARGING */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Reset backlight operation to its settings */
|
2009-01-16 10:34:40 +00:00
|
|
|
void remote_backlight_use_settings(void)
|
2007-11-29 23:55:58 +00:00
|
|
|
{
|
|
|
|
rb->remote_backlight_set_timeout(rb->global_settings->
|
|
|
|
remote_backlight_timeout);
|
|
|
|
#if CONFIG_CHARGING
|
|
|
|
rb->remote_backlight_set_timeout_plugged(rb->global_settings->
|
|
|
|
remote_backlight_timeout_plugged);
|
2007-08-15 12:42:09 +00:00
|
|
|
#endif /* CONFIG_CHARGING */
|
2007-08-13 22:31:11 +00:00
|
|
|
}
|
2022-11-24 04:00:29 +00:00
|
|
|
#else /* HAVE_REMOTE_LCD */
|
|
|
|
/* DUMMY FUNCTIONS */
|
|
|
|
void remote_backlight_force_on(void){}
|
|
|
|
void remote_backlight_ignore_timeout(void){}
|
|
|
|
void remote_backlight_use_settings(void){}
|
|
|
|
#endif /* !HAVE_REMOTE_LCD */
|
2008-05-08 21:23:31 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_BUTTON_LIGHT
|
|
|
|
/* Force the buttonlight on */
|
2009-01-16 10:34:40 +00:00
|
|
|
void buttonlight_force_on(void)
|
2011-01-24 12:29:16 +00:00
|
|
|
{
|
|
|
|
rb->buttonlight_set_timeout(0);
|
|
|
|
}
|
|
|
|
|
2015-02-22 11:22:40 +00:00
|
|
|
/* Force the buttonlight off */
|
|
|
|
void buttonlight_force_off(void)
|
|
|
|
{
|
|
|
|
rb->buttonlight_set_timeout(-1);
|
|
|
|
}
|
|
|
|
|
2011-01-24 12:29:16 +00:00
|
|
|
/* Turn off backlight timeout */
|
|
|
|
void buttonlight_ignore_timeout(void)
|
2008-05-08 21:23:31 +00:00
|
|
|
{
|
|
|
|
if (rb->global_settings->buttonlight_timeout > 0)
|
|
|
|
rb->buttonlight_set_timeout(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Reset buttonlight operation to its settings */
|
2009-01-16 10:34:40 +00:00
|
|
|
void buttonlight_use_settings(void)
|
2008-05-08 21:23:31 +00:00
|
|
|
{
|
|
|
|
rb->buttonlight_set_timeout(rb->global_settings->buttonlight_timeout);
|
|
|
|
}
|
2022-11-24 04:00:29 +00:00
|
|
|
#else /* HAVE_BUTTON_LIGHT */
|
|
|
|
/* DUMMY FUNCTIONS */
|
|
|
|
void buttonlight_force_on(void){}
|
|
|
|
void buttonlight_force_off(void){}
|
|
|
|
void buttonlight_ignore_timeout(void){}
|
|
|
|
void buttonlight_use_settings(void){}
|
|
|
|
#endif /* !HAVE_BUTTON_LIGHT */
|
2008-05-18 00:14:34 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_BACKLIGHT_BRIGHTNESS
|
2009-01-16 10:34:40 +00:00
|
|
|
void backlight_brightness_set(int brightness)
|
2008-05-18 00:14:34 +00:00
|
|
|
{
|
|
|
|
rb->backlight_set_brightness(brightness);
|
|
|
|
}
|
|
|
|
|
2009-01-16 10:34:40 +00:00
|
|
|
void backlight_brightness_use_setting(void)
|
2008-05-18 00:14:34 +00:00
|
|
|
{
|
|
|
|
rb->backlight_set_brightness(rb->global_settings->brightness);
|
|
|
|
}
|
2022-11-24 04:00:29 +00:00
|
|
|
#else /* HAVE_BACKLIGHT_BRIGHTNESS */
|
|
|
|
/* DUMMY FUNCTIONS */
|
|
|
|
void backlight_brightness_set(int brightness)
|
|
|
|
{
|
|
|
|
(void)brightness;
|
|
|
|
}
|
|
|
|
void backlight_brightness_use_setting(void){}
|
|
|
|
|
|
|
|
#endif /* !HAVE_BACKLIGHT_BRIGHTNESS */
|
2010-11-01 13:37:00 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_BUTTONLIGHT_BRIGHTNESS
|
|
|
|
void buttonlight_brightness_set(int brightness)
|
|
|
|
{
|
|
|
|
rb->buttonlight_set_brightness(brightness);
|
|
|
|
}
|
|
|
|
|
|
|
|
void buttonlight_brightness_use_setting(void)
|
|
|
|
{
|
|
|
|
rb->buttonlight_set_brightness(rb->global_settings->buttonlight_brightness);
|
|
|
|
}
|
2022-11-24 04:00:29 +00:00
|
|
|
#else /* HAVE_BUTTONLIGHT_BRIGHTNESS */
|
|
|
|
/* DUMMY FUNCTIONS */
|
|
|
|
void buttonlight_brightness_set(int brightness)
|
|
|
|
{
|
|
|
|
(void)brightness;
|
|
|
|
}
|
|
|
|
|
|
|
|
void buttonlight_brightness_use_setting(void){}
|
|
|
|
#endif /* !HAVE_BUTTONLIGHT_BRIGHTNESS */
|