ARM TFT LCD 5" 800x480 STM Nucleo SSD1963

Опубликовано: 11 Июнь 2026
на канале: attika066
3,232
9

My stickmen friends just awakened, and they find out - its a good idea to dance in My ARM drived TFT LCD... The fillscr routine is a low level routine, so its running very fast(60 fps @ 120MHz CPU clk). Everything else is writen in C(Keil 5.0). I used Radoslaw Kwiecien's ( [email protected], http://en.radzio.dxp.pl/ssd1963/) basic SSD1963 driverlib, with some optimalization, and individual TFT setup.
I wrote a processing program, to draw vectorgraphical items, to a 800*480 px window. The 3 basic forms are Circle, Line, ConnectedLine. I can see the previous sketch, so i can make animations similar. The processing code, parse out the items in formated C-code -like void frame1(void){SSD1963_DrawLine(110,109,198,199,0xffff);
SSD1963_DrawCircle(20,200,50,0xffff);
} etcetc.. after that , i just copy it to my Keil project and build it. Nice and tidy :)