From ffe0b23902ef8e92f60b7c15b53dfbb1f23fce8c Mon Sep 17 00:00:00 2001 From: Linus Nielsen Feltzing Date: Wed, 16 Nov 2005 13:27:07 +0000 Subject: 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 --- firmware/export/pcf50606.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'firmware/export/pcf50606.h') diff --git a/firmware/export/pcf50606.h b/firmware/export/pcf50606.h index 3941ea68d4..fd180bfaee 100644 --- a/firmware/export/pcf50606.h +++ b/firmware/export/pcf50606.h @@ -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 -- cgit v1.2.3