aboutsummaryrefslogtreecommitdiffstats
path: root/demos/drawing/main.c
blob: d38166fefad4fb9f68aa9bbf74ac372d22e5e60e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#include "ch.h"
#include "hal.h"
#include "glcd.h"

static WORKING_AREA(waThread1, 128);
static void Thread1(void *arg) {
	(void)arg;

	while (TRUE) {
		palTogglePad(GPIOD, GPIOD_LED1);
		chThdSleepMilliseconds(500);
	}
}

int main(void) {
	halInit();
	chSysInit();
	
	lcdInit();
	lcdClear(Black);
	lcdDrawString(100, 100, "Hello World", White, Black);
	lcdDrawCircle(150, 150, 10, filled, Green);
	lcdDrawLine(0, 0, lcdGetWidth(), lcdGetHeight(), Yellow);

	chThdCreateStatic(waThread1, sizeof(waThread1), NORMALPRIO, Thread1, NULL);
	
	while (TRUE) {
		
		chThdSleepMilliseconds(200);	
	}

	return 0;
}