2006-04-24 20:05:35 +00:00
|
|
|
#ifndef LCD_LINK_H
|
|
|
|
|
#define LCD_LINK_H
|
|
|
|
|
|
2007-04-11 11:48:01 +00:00
|
|
|
extern char *address;
|
2006-04-24 20:05:35 +00:00
|
|
|
extern int port;
|
|
|
|
|
|
2008-01-06 17:03:51 +00:00
|
|
|
int setup_connection(void);
|
|
|
|
|
int teardown_connection(void);
|
2007-04-11 11:48:01 +00:00
|
|
|
int read_response(char *str, int maxsize);
|
|
|
|
|
int process_response(char *str);
|
|
|
|
|
int update_display(void);
|
|
|
|
|
int send_nop(void);
|
2006-04-24 20:05:35 +00:00
|
|
|
|
|
|
|
|
#endif
|