aboutsummaryrefslogtreecommitdiffstats
path: root/demos/mandelbrot/main.c
blob: a726320e48d5394d7a50028b6a41b688469c8230 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "ch.h"
#include "hal.h"
#include "gdisp.h"

int main(void) {
	halInit();
	chSysInit();

	gdispInit();
	gdispSetOrientation(GDISP_ROTATE_270);

	mandelbrotInit(50, 50, 512);

	while(TRUE) {
	
	}
}