summaryrefslogtreecommitdiff
path: root/firmware/target/coldfire/iaudio/x5/lcd-remote-target.h
diff options
context:
space:
mode:
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