thermferm/lcd-buffer.h

Thu, 07 Aug 2014 14:20:11 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Thu, 07 Aug 2014 14:20:11 +0200
changeset 189
cc2b04d4db99
parent 108
50d2187fdb74
child 204
9a14d6b2de7f
permissions
-rw-r--r--

Init logfile when a unit is turned on. Added comments for profile processing.

#ifndef	LCD_BUFFER_H
#define	LCD_BUFFER_H


typedef struct _lcd_rows {
    struct _lcd_rows	*next;
    char		row[21 * sizeof(char)];
} lcd_rows;


void lcd_buf_write(int, const char *, ...);
void lcd_buf_show(void);

#endif

mercurial