aboutsummaryrefslogtreecommitdiffstats
path: root/display.h
diff options
context:
space:
mode:
authorreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2002-08-19 04:41:20 +0000
committerreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2002-08-19 04:41:20 +0000
commitd72755a9609479f9b3463a96c3a71fd7084f2fb3 (patch)
treec97b9dd85328464e0c75fe7780e7cec6004ba92e /display.h
parent0d5e6f24b79e5127a66db4cf1e4155424ba26ded (diff)
downloadlcd4linux-d72755a9609479f9b3463a96c3a71fd7084f2fb3.tar.gz
[lcd4linux @ 2002-08-19 04:41:20 by reinelt]
introduced bar.c, moved bar stuff from display.h to bar.h git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@158 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to '')
-rw-r--r--display.h18
1 files changed, 4 insertions, 14 deletions
diff --git a/display.h b/display.h
index 3afc736..8d3db89 100644
--- a/display.h
+++ b/display.h
@@ -1,4 +1,4 @@
-/* $Id: display.h,v 1.14 2001/03/16 16:40:17 ltoetsch Exp $
+/* $Id: display.h,v 1.15 2002/08/19 04:41:20 reinelt Exp $
*
* framework for device drivers
*
@@ -20,6 +20,9 @@
*
*
* $Log: display.h,v $
+ * Revision 1.15 2002/08/19 04:41:20 reinelt
+ * introduced bar.c, moved bar stuff from display.h to bar.h
+ *
* Revision 1.14 2001/03/16 16:40:17 ltoetsch
* implemented time bar
*
@@ -84,19 +87,6 @@
#ifndef _DISPLAY_H_
#define _DISPLAY_H_
-#define BAR_L (1<<0)
-#define BAR_R (1<<1)
-#define BAR_U (1<<2)
-#define BAR_D (1<<3)
-#define BAR_H2 (1<<4)
-#define BAR_V2 (1<<5)
-#define BAR_LOG (1<<6)
-#define BAR_T (1<<7)
-
-#define BAR_H (BAR_L | BAR_R)
-#define BAR_V (BAR_U | BAR_D | BAR_T)
-#define BAR_HV (BAR_H | BAR_V)
-
typedef struct LCD {
char *name;
int rows;