debug("%s: open %s/%s/%s", Name, bus->dirname, dev->bus->dirname, dev->filename);
if ((g15_lcd = usb_open(dev))) {
if (dev->descriptor.idVendor == G15_VENDOR) {
- debug("%s: Found USB vendor ID 0x%x (Logitech), checking productID 0x%x...",
- Name, G15_VENDOR, dev->descriptor.idProduct);
+ debug("%s: Found USB vendor ID 0x%x (Logitech), checking productID 0x%x...",
+ Name, G15_VENDOR, dev->descriptor.idProduct);
switch (dev->descriptor.idProduct) {
case G15_DEVICE:
case G15_DEVICE2:
break;
}
default:
- debug("%s: Don't found USB product IDs 0x%x|0x%x/0x%x for G-15/M1730 or 0x%x for Z10",
- Name, G15_DEVICE, G15_DEVICE2, M1730_DEVICE, Z10_DEVICE);
+ debug("%s: Don't found USB product IDs 0x%x|0x%x/0x%x for G-15/M1730 or 0x%x for Z10",
+ Name, G15_DEVICE, G15_DEVICE2, M1730_DEVICE, Z10_DEVICE);
usb_close(g15_lcd);
}
#include "qprintf.h"
#include "udelay.h"
#include "plugin.h"
+#include "timer.h"
#include "widget.h"
#include "widget_text.h"
#include "widget_icon.h"
#define DEBUG(x)
#endif
+/* "dirty" marks the display to be redrawn from frame buffer */
+static int dirty = 1;
+
+/* timer for display redraw (set to zero for "direct updates") */
+static int update = 0;
static char Name[] = "picoLCDGraphic";
static unsigned char *pLG_framebuffer;
unsigned char cs, line;
unsigned char pixel;
- info("In %s\n", __FUNCTION__);
+ /* do not redraw display if frame buffer has not changed, unless
+ "direct updates" have been requested (update is zero) */
+ if ((!dirty) && (update > 0)) {
+ debug("Skipping %s\n", __FUNCTION__);
+ return;
+ }
+ info("In %s\n", __FUNCTION__);
for (cs = 0; cs < 4; cs++) {
unsigned char chipsel = (cs << 2); //chipselect
}
}
+ /* mark display as up-to-date */
+ dirty = 0;
//drv_pLG_clear();
}
fprintf(stderr, "\n");
}
*/
- drv_pLG_update_img();
+
+ /* display needs to be redrawn from frame buffer */
+ dirty = 1;
+
+ /* if "direct updates" have been requested, redraw now */
+ if (update <= 0)
+ drv_pLG_update_img();
}
int value;
char *s;
+ /* set display redraw interval (set to zero for "direct updates") */
+ cfg_number(section, "update", 200, 0, -1, &update);
+
s = cfg_get(section, "Size", NULL);
if (s == NULL || *s == '\0') {
error("%s: no '%s.Size' entry from %s", Name, section, cfg_source());
}
}
+ /* setup a timer that regularly redraws the display from the frame
+ buffer (unless "direct updates" have been requested */
+ if (update > 0)
+ timer_add(drv_pLG_update_img, NULL, update, 0);
+
return 0;
}