summaryrefslogtreecommitdiff
path: root/firmware/target/coldfire/iaudio/x5/lcd-remote-target.h
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2006-07-28 12:41:13 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2006-07-28 12:41:13 +0000
commitd17d08c268290b9ffc2f6e62876f1e0a05b56a6e (patch)
tree8536a67ffa5c88f7ec38e5a74046c28705b95220 /firmware/target/coldfire/iaudio/x5/lcd-remote-target.h
parent38719f87cbf6cd5fcefafe14780543eb1dad3f63 (diff)
downloadrockbox-d17d08c268290b9ffc2f6e62876f1e0a05b56a6e.tar.gz
rockbox-d17d08c268290b9ffc2f6e62876f1e0a05b56a6e.zip
LCD remote support for iAudio X5
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10352 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/target/coldfire/iaudio/x5/lcd-remote-target.h')
-rwxr-xr-xfirmware/target/coldfire/iaudio/x5/lcd-remote-target.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/firmware/target/coldfire/iaudio/x5/lcd-remote-target.h b/firmware/target/coldfire/iaudio/x5/lcd-remote-target.h
index 72d4ed9fb2..8c20526ff3 100755
--- a/firmware/target/coldfire/iaudio/x5/lcd-remote-target.h
+++ b/firmware/target/coldfire/iaudio/x5/lcd-remote-target.h
@@ -19,12 +19,16 @@
19#ifndef LCD_REMOTE_TARGET_H 19#ifndef LCD_REMOTE_TARGET_H
20#define LCD_REMOTE_TARGET_H 20#define LCD_REMOTE_TARGET_H
21 21
22void lcd_remote_init_device(void);
22void lcd_remote_write_command(int cmd); 23void lcd_remote_write_command(int cmd);
23void lcd_remote_write_command_ex(int cmd, int data); 24void lcd_remote_write_command_ex(int cmd, int data);
24void lcd_remote_write_data(const unsigned char* p_bytes, int count); 25void lcd_remote_write_data(const unsigned char* p_bytes, int count);
25bool remote_detect(void); 26bool remote_detect(void);
26void lcd_remote_powersave(bool on); 27void lcd_remote_powersave(bool on);
27void lcd_remote_set_contrast(int val); 28void lcd_remote_set_contrast(int val);
28void remote_set_row_and_col(int row, int col); 29void lcd_remote_on(void);
30void lcd_remote_off(void);
31
32extern bool remote_initialized;
29 33
30#endif 34#endif