Colour targets: Revert an optimisation from almost 18 months ago that actually turned...
[Rockbox.git] / firmware / export / power.h
blobf74e6fe0c27686e732ad9ebe7c8f12c39c86de5d
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2002 by Linus Nielsen Feltzing
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
21 #ifndef _POWER_H_
22 #define _POWER_H_
24 #if CONFIG_CHARGING == CHARGING_CONTROL
25 extern bool charger_enabled;
26 void charger_enable(bool on);
27 #endif
29 #if CONFIG_CHARGING
30 bool charger_inserted(void);
31 #endif
33 void power_off(void);
34 void ide_power_enable(bool on);
36 # if CONFIG_CHARGING == CHARGING_MONITOR
37 bool charging_state(void);
38 # endif
40 #ifndef SIMULATOR
42 void power_init(void);
44 bool ide_powered(void);
45 #endif
47 #ifdef HAVE_SPDIF_POWER
48 void spdif_power_enable(bool on);
49 bool spdif_powered(void);
50 #endif
52 #if CONFIG_TUNER
53 bool tuner_power(bool status);
54 #endif
56 #endif