aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drv_picoLCD.c1
-rw-r--r--widget_gpo.h2
-rw-r--r--widget_icon.h2
-rw-r--r--widget_keypad.h3
-rw-r--r--widget_text.h2
-rw-r--r--widget_timer.h2
6 files changed, 0 insertions, 12 deletions
diff --git a/drv_picoLCD.c b/drv_picoLCD.c
index dafd496..a50b235 100644
--- a/drv_picoLCD.c
+++ b/drv_picoLCD.c
@@ -166,7 +166,6 @@ static void drv_pL_send(void)
usb_bulk_write(lcd, USB_ENDPOINT_OUT + 1, Buffer, BufPtr - Buffer, 1000);
#endif
}
-
#if 0
gettimeofday(&end, NULL);
debug("send %d bytes in %d usec (%d usec/byte)", BufPtr - Buffer,
diff --git a/widget_gpo.h b/widget_gpo.h
index d263c47..6f8e155 100644
--- a/widget_gpo.h
+++ b/widget_gpo.h
@@ -28,10 +28,8 @@
#ifndef _WIDGET_GPO_H_
#define _WIDGET_GPO_H_
-
#include "property.h"
-
typedef struct WIDGET_GPO {
PROPERTY expression; /* main GPO expression */
PROPERTY update; /* update interval (msec) */
diff --git a/widget_icon.h b/widget_icon.h
index 77154f5..35fd186 100644
--- a/widget_icon.h
+++ b/widget_icon.h
@@ -28,10 +28,8 @@
#ifndef _WIDGET_ICON_H_
#define _WIDGET_ICON_H_
-
#include "property.h"
-
typedef struct WIDGET_ICON {
PROPERTY speed; /* update interval (msec) */
PROPERTY visible; /* icon visible? */
diff --git a/widget_keypad.h b/widget_keypad.h
index 117ef1d..3478697 100644
--- a/widget_keypad.h
+++ b/widget_keypad.h
@@ -28,10 +28,8 @@
#ifndef _WIDGET_KEYPAD_H_
#define _WIDGET_KEYPAD_H_
-
#include "property.h"
-
typedef enum {
WIDGET_KEY_UP = 1,
WIDGET_KEY_DOWN = 2,
@@ -43,7 +41,6 @@ typedef enum {
WIDGET_KEY_RELEASED = 128
} KEYPADKEY;
-
typedef struct WIDGET_KEYPAD {
PROPERTY expression; /* expression that delivers the value */
KEYPADKEY key; /* which key */
diff --git a/widget_text.h b/widget_text.h
index 10901f8..b88c91c 100644
--- a/widget_text.h
+++ b/widget_text.h
@@ -28,10 +28,8 @@
#ifndef _WIDGET_TEXT_H_
#define _WIDGET_TEXT_H_
-
#include "property.h"
-
typedef enum { ALIGN_LEFT, ALIGN_CENTER, ALIGN_RIGHT, ALIGN_MARQUEE } TEXT_ALIGN;
typedef struct WIDGET_TEXT {
diff --git a/widget_timer.h b/widget_timer.h
index 3d24a04..494d000 100644
--- a/widget_timer.h
+++ b/widget_timer.h
@@ -28,10 +28,8 @@
#ifndef _WIDGET_TIMER_H_
#define _WIDGET_TIMER_H_
-
#include "property.h"
-
typedef struct WIDGET_TIMER {
PROPERTY expression; /* main timer expression */
PROPERTY update; /* update interval (msec) */