blob: 45689df30dfd312dddfc1e3dc9c113a792ae7df7 (
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(128, 128, 512);
while(TRUE) {
}
}
|