From 2c5d5c51183fbdb01f24afdbb5d29dbf00f4f836 Mon Sep 17 00:00:00 2001 From: Andrew Hannam Date: Thu, 20 Dec 2012 18:34:12 +1000 Subject: New & updated GDISP demo programs --- demos/modules/window/main.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'demos/modules/window/main.c') diff --git a/demos/modules/window/main.c b/demos/modules/window/main.c index 88f71be3..e9cf21e0 100644 --- a/demos/modules/window/main.c +++ b/demos/modules/window/main.c @@ -28,6 +28,7 @@ GHandle GW1, GW2; int main(void) { halInit(); chSysInit(); + coord_t i, j; /* Initialize and clear the display */ gdispInit(); @@ -47,6 +48,10 @@ int main(void) { gwinClear(GW1); gwinClear(GW2); + gwinDrawLine (GW1, 5, 30, 150, 110); + for(i=5, j=0; i < 200 && j < 150; i+=3, j+=i/20) + gwinDrawPixel (GW1, i, j); + /* * Draw two filled circles at the same coordinate * of each window to demonstrate the relative coordinates -- cgit v1.2.3