When setting a cache path also enable the cache implicitly.
[Rockbox.git] / firmware / export / pcf50605.h
blobb38d6a3f14a97b2654aa6167d0267407e856dd3a
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2005 by Dave Chapman
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 ****************************************************************************/
20 #ifndef PCF50605_H
21 #define PCF50605_H
23 extern unsigned char pcf50605_wakeup_flags;
25 int pcf50605_read(int address);
26 int pcf50605_read_multiple(int address, unsigned char* buf, int count);
27 int pcf50605_write(int address, unsigned char val);
28 int pcf50605_write_multiple(int address, const unsigned char* buf, int count);
29 int pcf50605_a2d_read(int channel);
30 bool pcf50605_charger_inserted(void);
31 void pcf50605_standby_mode(void);
32 void pcf50605_init(void);
34 #endif