1
0
Fork 0
forked from len0rd/rockbox

Added single-byte read/write functions for the PCF50606 driver

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7905 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2005-11-16 13:27:07 +00:00
parent fa32b8c1b1
commit ffe0b23902
2 changed files with 26 additions and 9 deletions

View file

@ -21,8 +21,10 @@
#ifdef IRIVER_H300_SERIES
void pcf50606_init(void);
int pcf50606_write(int address, const unsigned char* buf, int count);
int pcf50606_read(int address, unsigned char* buf, int count);
int pcf50606_write_multiple(int address, const unsigned char* buf, int count);
int pcf50606_write(int address, unsigned char val);
int pcf50606_read_multiple(int address, unsigned char* buf, int count);
int pcf50606_read(int address);
#endif
#endif